-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "axs",
"version": "4.0.0-1",
"description": "Stupid simple style components for React",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"prepublish": "babel src -d dist && babel src/index.js -o dist/index.es.js --no-babelrc --presets=stage-0,react",
"start": "x0 dev docs/App.js -o",
"build": "x0 build docs/App.js --static -d docs",
"logo": "repng docs/Logo.js -w 768 -h 768 -o docs -f logo",
"size": "npm run prepublish && bundlesize",
"cover": "nyc report --reporter=html --reporter=lcov",
"test": "nyc ava"
},
"keywords": [
"react",
"react-component",
"style",
"stylis",
"ui",
"css",
"css-in-js"
],
"author": "Brent Jackson",
"license": "MIT",
"devDependencies": {
"@compositor/x0": "^3.0.2",
"ava": "^0.24.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"bundlesize": "^0.15.3",
"nyc": "^11.4.1",
"objss": "^1.0.3",
"react-test-renderer": "^16.2.0",
"repng": "^1.0.1",
"styled-system": "^1.1.1",
"theming": "^1.3.0"
},
"dependencies": {
"html-tags": "^2.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"stylis": "^3.4.5"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"bundlesize": [
{
"path": "src/index.js",
"maxSize": "0.8 kb"
},
{
"path": "dist/index.js",
"maxSize": "1.8 kb"
}
]
}