forked from FormidableLabs/radium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 4.52 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "radium",
"version": "0.25.1",
"description": "A set of tools to manage inline styles on React elements",
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/formidablelabs/radium.git"
},
"homepage": "https://github.com/formidablelabs/radium",
"bugs": "https://github.com/formidablelabs/radium/issues",
"directories": {
"example": "examples"
},
"scripts": {
"postinstall": "cd lib || npm run build",
"preversion": "npm test && npm run lint",
"version": "npm run build",
"postversion": "publishr postversion -V",
"postpublish": "publishr postpublish -V",
"version-dry-run": "publishr dry-run -V",
"build": "npm run clean && builder concurrent --buffer build-lib build-dist build-es",
"build-babel": "babel src --ignore \"/__tests__/,/__mocks__/\"",
"build-lib": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"commonjs\\\"}\" build-babel -- -d lib",
"build-dist-dev": "webpack",
"build-dist-prod": "webpack --config=webpack.config.minified.js",
"build-dist": "builder concurrent --buffer build-dist-dev build-dist-prod",
"build-examples": "webpack --config examples/webpack.config.js",
"build-es": "builder run build-babel -- -d es",
"clean": "rimraf lib es dist",
"examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples",
"examples-server": "babel-node examples/server.js",
"flow": "flow check",
"eslint": "eslint .",
"fixlint": "npm run eslint -- --fix",
"lint": "builder concurrent --buffer eslint flow",
"start": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"commonjs\\\"}\" examples-server",
"test-node": "mocha \"test/**/*-test.js\"",
"test-node-dev": "mocha --watch \"test/**/*-test.js\"",
"test-frontend": "karma start",
"test-frontend-coverage": "karma start karma.conf.coverage.js",
"test-frontend-ie": "karma start karma.conf.ie.js",
"test-frontend-dev": "karma start --no-single-run --auto-watch",
"test": "npm run test-node && npm run test-frontend",
"test-coverage": "npm run test-node && npm run test-frontend-coverage",
"test-ie": "npm run test-node && npm run test-frontend-ie",
"test-dev": "builder concurrent test-node-dev test-frontend-dev",
"universal": "builder concurrent start examples",
"update-prefix-data": "babel-node scripts/update-prefix-data.js && eslint --fix src/prefix-data",
"watch-lib": "npm run build-lib -- --watch"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"builder": "^3.2.3",
"exenv": "^1.2.1",
"inline-style-prefixer": "^4.0.0",
"prop-types": "^15.5.8",
"publishr": "^1.0.0",
"rimraf": "^2.6.1",
"webpack": "^3.10.0"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^5.1.0",
"caniuse-api": "^2.0.0",
"chai": "^3.5.0",
"color": "^1.0.3",
"core-js": "^2.5.3",
"coveralls": "^2.12.0",
"enzyme": "^3.5.1",
"enzyme-adapter-react-16": "^1.4.0",
"eslint": "^3.17.1",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.0",
"express": "^4.15.2",
"express-http-proxy": "^0.11.0",
"flow-bin": "^0.53.1",
"inject-loader": "^3.0.1",
"jsdom": "^12.0.0",
"jsdom-global": "^3.0.2",
"karma": "^3.0.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-sinon-chai": "^1.2.4",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"node-libs-browser": "^2.0.0",
"nodemon": "^1.11.0",
"object-assign": "^4.1.1",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"webpack-dev-server": "^2.11.1"
},
"publishr": {
"dependencies": [
"^babel-",
"^builder$",
"^publishr$",
"^rimraf$",
"^webpack"
],
"files": {
".npmignore": ".npmignore.publishr"
},
"scripts": {
"postinstall": ""
}
}
}