-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.93 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
{
"name": "react-themed",
"description": "A flexible library for styling React components",
"version": "3.2.1",
"main": "./lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"author": "Ari Bouius <[email protected]> (http://github.com/aribouius)",
"license": "MIT",
"homepage": "https://github.com/aribouius/react-themed",
"repository": {
"type": "git",
"url": "https://github.com/aribouius/react-themed.git"
},
"bugs": {
"url": "https://github.com/aribouius/react-themed/issues"
},
"files": [
"dist",
"lib",
"src",
"es"
],
"scripts": {
"clean": "rm -rf lib && rm -rf es && rm -rf dist",
"build": "yarn run build:es && yarn run build:commonjs && yarn run build:umd && yarn run build:umd:min",
"build:es": "BABEL_ENV=es babel --ignore *-test.js -d es src",
"build:commonjs": "BABEL_ENV=commonjs babel --ignore *-test.js -d lib src",
"build:umd": "BABEL_ENV=rollup NODE_ENV=development rollup -c -o dist/react-themed.js",
"build:umd:min": "BABEL_ENV=rollup NODE_ENV=production rollup -c -o dist/react-themed.min.js",
"build:watch": "yarn run build:es -- --watch",
"test": "BABEL_ENV=commonjs mocha --compilers js:babel-core/register --recursive",
"test:watch": "yarn run test -- --watch",
"lint": "eslint src",
"lint:fix": "yarn run lint -- --fix",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"mocha": "^3.3.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.5.4",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "^2.1.0"
},
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
},
"keywords": [
"react",
"reactjs",
"theme",
"theming",
"themes",
"style",
"styles",
"styling",
"components",
"styled-components",
"styled components",
"css",
"jss",
"css modules",
"css-modules",
"css-in-js",
"css in js",
"compose",
"composable"
]
}