-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.46 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
{
"name": "downstyle",
"description": "Minimal dependency theming system for React component authors",
"version": "0.1.1",
"main": "dist/downstyle.cjs.js",
"module": "dist/downstyle.esm.js",
"browser": "dist/downstyle.umd.js",
"scripts": {
"precommit": "lint-staged",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"lint-staged": {
"*.{js,jsx}": ["eslint", "git add"]
},
"files": ["dist"],
"keywords": [
"react",
"reactjs",
"themes",
"styles",
"theming",
"components",
"developers"
],
"author": "Peter Hurst",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/downplay/downstyle.git"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-react-displayname": "^0.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-require-ignore": "^0.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.25.0",
"babelrc-rollup": "^3.0.0",
"cross-env": "^5.0.3",
"eslint": "4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"mocha": "^3.5.0",
"npm-run-all": "^4.0.2",
"react": "^15.6.1",
"rollup": "^0.47.2",
"rollup-plugin-babel": "^3.0.1",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0"
}
}