-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "react-masonry-layout",
"version": "0.4.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"prepare": "npm run clean && npm run build",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scarletsky/react-masonry-layout.git"
},
"author": "scarletsky <[email protected]> (https://github.com/scarletsky)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/scarletsky/react-masonry-layout/issues"
},
"homepage": "https://github.com/scarletsky/react-masonry-layout#readme",
"keywords": [
"react",
"masonry",
"infinite scroll",
"bricks"
],
"peerDependencies": {
"react": ">= 15.5.0"
},
"dependencies": {
"bricks.js": "^1.8.0",
"prop-types": "^15.6.0",
"react": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^5.6.0",
"eslint-plugin-react": "^4.3.0",
"rimraf": "^2.5.2"
}
}