-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.76 KB
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
{
"name": "react-broadcast",
"version": "0.1.2",
"description": "A reliable way to broadcast state changes to React elements deep in the hierarchy",
"repository": "mjackson/react-broadcast",
"authors": [
"Michael Jackson",
"Ryan Florence"
],
"license": "MIT",
"scripts": {
"build": "node ./scripts/build.js",
"build-cjs": "babel ./modules -d . --ignore '__tests__'",
"build-umd": "webpack modules/index.js umd/react-broadcast.js",
"build-min": "webpack -p modules/index.js umd/react-broadcast.min.js",
"prepublish": "node ./scripts/build.js",
"release": "node ./scripts/release.js",
"test": "npm run lint && karma start",
"lint": "eslint modules"
},
"dependencies": {
"invariant": "^2.2.1"
},
"peerDependencies": {
"react": "15.x"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^3.3.1",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-react": "^6.1.2",
"expect": "^1.20.1",
"gzip-size": "^3.0.0",
"in-publish": "^2.0.0",
"karma": "^1.2.0",
"karma-browserstack-launcher": "^1.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^3.0.2",
"pretty-bytes": "^4.0.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"readline-sync": "^1.4.4",
"webpack": "1.14.0"
}
}