-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.75 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.75 KB
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
{
"name": "cxs",
"version": "6.1.0",
"description": "Fast af css-in-js in under 1kb",
"main": "dist/index.js",
"scripts": {
"prepublish": "babel src -d dist",
"build": "node docs/build.js",
"start": "webpack-dev-server",
"size": "npm run prepublish && bundlesize",
"standard": "standard",
"cover": "npm test && nyc report --reporter=html --reporter=lcov > coverage.lcov && codecov",
"test": "nyc ava"
},
"keywords": [],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"objss": "^1.0.3",
"tag-hoc": "^1.0.0-0"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"browser-env": "^3.1.0",
"bundlesize": "^0.12.1",
"bytes": "^2.5.0",
"codecov": "^2.3.0",
"loglevel": "^1.4.1",
"nyc": "^11.0.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-live": "^1.7.0",
"react-test-renderer": "^15.6.1",
"standard": "^10.0.2",
"styled-system": "^1.0.0-12",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"test",
"dist",
"docs"
]
},
"standard": {
"ignore": [
"benchmarks",
"coverage",
".nyc_output",
"dist",
"_test",
"docs"
]
},
"bundlesize": [
{
"path": "./dist/index.js",
"maxSize": "0.8 kb"
},
{
"path": "./dist/component.js",
"maxSize": "0.7 kb"
},
{
"path": "./dist/monolithic.js",
"maxSize": "1.01 kb"
}
]
}