-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.29 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
{
"version": "1.0.0",
"description": "Stressless CSS for components using JS. Write Component Based CSS with functional mixins.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"build": "cross-env NODE_ENV=production babel -d ./build/rockey ./pakcages/rockey/",
"test-dev": "jest --watch",
"format": "prettier --trailing-comma es5 --single-quote --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'",
"optimize-parse": "node ./packages/rockey-css-parse/tasks/optimizeParse.js",
"bench:nested": "cross-env NODE_ENV=development babel-node ./packages/rockey-css-parse/tasks/benchmark-nested.js",
"bench:native": "cross-env NODE_ENV=development babel-node ./packages/rockey-css-parse/tasks/benchmark-native.js",
"dev": "node ./tasks/dev",
"clean": "node ./tasks/clean",
"minify": "node ./tasks/minify",
"precommit": "lint-staged",
"transpile": "node ./tasks/transpile"
},
"keywords": [
"react",
"css",
"css-in-js",
"rockey"
],
"author": "Valerii Sorokobatko <valeriy.sorokobatko@gmail.com> (https://github.com/tuchk4)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuchk4/rockey/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tuchk4/rockey.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^3.0.3",
"chalk": "^2.2.0",
"cross-env": "^5.1.0",
"cross-spawn": "^5.1.0",
"eslint": "^4.9.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gzip-size": "^4.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lerna": "^2.4.0",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"pretty-bytes": "^4.0.2",
"react-test-renderer": "^16.0.0",
"recompose": "^0.26.0",
"rimraf": "^2.6.2",
"spawn-sync": "^1.0.15",
"webpack": "^3.8.1",
"yargs": "^9.0.1"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"dependencies": {
"react": "^16.0.0"
}
}