-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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
{
"name": "style-assistant",
"version": "0.0.7",
"description": "css-jss helpers",
"repository": "https://github.com/JoshRosenstein/style-assistant.git",
"author": "Josh Rosenstein <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"browser": "dist/index.umd.js",
"module": "dist/index.esm.js",
"source": "src/index.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"docz:dev": "docz dev",
"docz:build": "docz build",
"prepack": "yarn run build",
"clean": "rimraf node_modules && rimraf dist",
"build": "cross-env NODE_ENV=production && rollup -c",
"build:dev": "rollup -c",
"watch": "rollup -c --watch",
"size": "bundlesize",
"test": "jest --coverage --no-cache --ci --runInBand",
"test:watch": "jest --watch",
"test:quick": "jest --onlyChanged --runInBand",
"test:coverage": "jest --coverage",
"reinstall": "yarn run clean && yarn",
"lint": "npx eslint .",
"clean:temp": "rimraf temp"
},
"dependencies": {
"@roseys/futils": "^0.0.22"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^0.13.1",
"@roseys/clean-props-by-tag": "^0.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"bundlesize": "^0.17.0",
"codecov": "^3.0.0",
"cross-env": "^5.2.0",
"docz": "^0.11.0",
"eslint-config-react-tools": "^1.1.6",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"lint-staged": "^7.2.0",
"microbundle": "^0.6.0",
"react": "^16.5.2",
"react-emotion": "^9.2.12",
"rimraf": "^2.6.1",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-cleanup": "^3.0.0-beta.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1"
},
"bundlesize": [
{
"path": "dist/styler.min.js"
}
],
"lint-staged": {
"*.js": [
"prettier --no-semi --single-quote --write",
"git add"
]
}
}