-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
{
"name": "cellulose",
"version": "0.2.3",
"description": "Layout engine for react componenets based on context aware css",
"main": "./lib",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"babel": "babel ./src -d lib",
"build": "NODE_ENV=production npm run babel",
"prebuild": "rimraf lib",
"prepublish": "npm test && npm run prebuild && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/CodingZeal/cellulose.git"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/CodingZeal/cellulose/issues"
},
"homepage": "https://github.com/CodingZeal/cellulose/issues",
"keywords": [
"react",
"layout",
"css",
"flexbox",
"grid",
"cellulose"
],
"author": "Zeal",
"peerDependencies": {
"react": ">0.14.0",
"react-dom": ">0.14.0"
},
"dependencies": {
"classnames": "^2.2.5",
"ramda": "^0.23.0",
"react-measure": "^1.4.5",
"styled-components": "^1.4.4"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-react-app": "^2.1.0",
"babel-preset-stage-1": "^6.22.0",
"enzyme": "^2.7.1",
"jest": "^18.1.0",
"node-sass": "^4.5.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.5.4"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
}
}