forked from cxs-css/cxs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "@iwe/cxs",
"version": "3.0.5-0",
"description": "A CSS-in-JS solution for functional CSS in functional UI components",
"main": "atomic.js",
"scripts": {
"prepublish": "mkdir -p dist && babel src --out-dir dist",
"build": "webpack -p",
"gh-pages": "gh-pages -d example",
"start": "webpack-dev-server",
"size": "npm run prepublish && bundle-size ./",
"size-lite": "npm run prepublish && bundle-size ./lite",
"size-monolithic": "npm run prepublish && bundle-size ./monolithic",
"standard": "standard",
"test-watch": "ava -v --watch",
"test": "ava -v",
"test-all": "ava -v && ava -v packages/cxs-components/test && ava -v packages/react-cxs/test && ava -v packages/react-cxs-hoc/test"
},
"repository": "https://github.com/I-We/cxs",
"keywords": [],
"author": "Brent Jackson",
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.10.1",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"bundle-size": "^1.1.4",
"enzyme": "^2.7.0",
"gh-pages": "^0.11.0",
"html-loader": "^0.4.3",
"inline-style-prefixer": "^2.0.0",
"jsdom": "^9.3.0",
"jsdom-global": "^2.0.0",
"json-loader": "^0.5.4",
"markdown-loader": "^0.1.7",
"pretty-bytes": "^4.0.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.3.2",
"standard": "^8.5.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"yo-yo": "^1.2.1"
},
"dependencies": {
"glamor": "^2.17.14"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"standard": {
"parser": "babel-eslint"
}
}