forked from FormidableLabs/radium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.56 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
{
"name": "radium-inline-style-prefixer3",
"version": "https://github.com/omryr/radium/tarball/master",
"description": "A set of tools to manage inline styles on React elements",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/omryr/radium.git"
},
"homepage": "https://github.com/omryr/radium",
"bugs": "https://github.com/omryr/radium/issues",
"directories": {
"example": "examples"
},
"scripts": {
"postinstall": "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-lib": "rimraf lib && babel src/ -d lib/ && rimraf lib/__tests__ lib/__mocks__",
"build-dist": "rimraf dist && webpack && webpack --config=webpack.config.minified.js",
"build": "npm run build-lib && npm run build-dist",
"examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples/",
"flow": "flow check",
"eslint": "eslint src examples --ext .js --ext .jsx",
"fixlint": "npm run eslint -- --fix",
"lint": "npm run eslint && npm run flow",
"start": "babel-node examples/server.js",
"test": "karma start",
"test-coverage": "karma start karma.conf.coverage.js",
"test-ie": "karma start karma.conf.ie.js",
"test-dev": "karma start --no-single-run --auto-watch",
"universal": "concurrently --kill-others \"npm start\" \"npm run examples\""
},
"license": "MIT",
"dependencies": {
"array-find": "^1.0.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"exenv": "^1.2.1",
"inline-style-prefixer": "^3.0.7",
"prop-types": "^15.5.8",
"publishr": "^1.0.0",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"react": "^15.3.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"chai": "^3.5.0",
"color": "^1.0.3",
"concurrently": "^3.4.0",
"coveralls": "^2.12.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.41.0",
"inject-loader": "^3.0.0-beta4",
"isparta-loader": "^2.0.0",
"karma": "^1.5.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-coverage": "^1.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon-chai": "^1.2.4",
"karma-webpack": "^2.0.3",
"lodash.merge": "^4.6.0",
"mocha": "^3.2.0",
"node-libs-browser": "^2.0.0",
"nodemon": "^1.11.0",
"object-assign": "^4.1.1",
"phantomjs-prebuilt": "^2.1.14",
"prettier": "^0.22.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"publishr": {
"dependencies": [
"^babel-",
"^publishr$",
"^rimraf$"
],
"files": {
".npmignore": ".npmignore.publishr"
},
"scripts": {
"postinstall": ""
}
}
}