forked from tsuyoshiwada/react-stack-grid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-stack-grid",
"version": "0.7.2",
"description": "Pinterest like layout components for React.js",
"main": "lib/index.js",
"scripts": {
"start": "npm run docs",
"clean": "rimraf lib",
"build": "babel src/ -d lib/ --ignore \"**/__tests__/*\"",
"test": "npm run test:lint && npm run test:typecheck && npm run test:unit",
"test:lint": "eslint \"src/**/*.js\" \"docs/js/**/*.js\"",
"test:typecheck": "flow",
"test:unit": "jest",
"test:watch": "npm run test:unit -- --watch",
"docs": "webpack-dev-server --config docs/webpack.config.js",
"docs:build": "webpack -p --config docs/webpack.config.production.js",
"docs:deploy": "npm run docs:build && gh-pages -d docs",
"prebuild": "npm run clean",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grobacz/react-stack-grid.git"
},
"keywords": [
"react",
"react-component",
"layout",
"grid",
"pinterest",
"masonry"
],
"author": "tsuyoshiwada",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsuyoshiwada/react-stack-grid/issues"
},
"homepage": "https://github.com/tsuyoshiwada/react-stack-grid#readme",
"files": [
"lib",
"test"
],
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-power-assert": "^1.0.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"enzyme": "^2.9.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-flowtype-errors": "^3.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^21.4.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.50.0",
"gh-pages": "^1.0.0",
"jest": "^21.2.1",
"rc-slider": "^8.2.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.1.3",
"react-router": "^3.0.0",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1",
"sinon": "^2.3.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"peerDependencies": {
"react": ">=15.3.0",
"react-dom": ">=15.3.0"
},
"dependencies": {
"easy-css-transform-builder": "^0.0.2",
"exenv": "^1.2.1",
"imagesloaded": "^4.1.1",
"inline-style-prefixer": "^3.0.6",
"invariant": "^2.2.2",
"prop-types": "^15.5.10",
"react-sizeme": "^3.0.0",
"react-transition-group": "^1.2.0",
"shallowequal": "^1.0.1"
},
"jest": {
"testMatch": [
"**/?(*.)spec.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/"
],
"setupFiles": [
"./jest/setup.js"
]
}
}