-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
104 lines (104 loc) · 2.38 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
{
"name": "cxs",
"version": "6.2.0",
"description": "Fast af css-in-js in under 1kb",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"scripts": {
"prepublish": "rollup -c",
"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": [],
"files": [
"dist/component.js",
"dist/component.min.js",
"dist/createTheme.js",
"dist/createTheme.min.js",
"dist/index.js",
"dist/index.min.js",
"dist/monocomponent.js",
"dist/monocomponent.min.js",
"dist/monolithic.js",
"dist/monolithic.min.js",
"dist/ThemeProvider.js",
"dist/ThemeProvider.min.js"
],
"author": "Brent Jackson",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "1.0.0-beta.1",
"babel-loader": "^8.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"browser-env": "^3.1.0",
"bundlesize": "^0.12.1",
"bytes": "^2.5.0",
"codecov": "^3.1.0",
"loglevel": "^1.4.1",
"nyc": "^13.0.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-live": "^1.7.0",
"react-test-renderer": "^15.6.1",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^5.0.2",
"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": {
"testOptions": {
"babelrc": true
}
}
},
"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.75 kb"
},
{
"path": "./dist/monolithic.js",
"maxSize": "1.0 kb"
}
]
}