-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"name": "react-feature-gate",
"version": "1.3.0",
"description": "React components to support feature gating",
"main": "dist/react-feature-gate.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.build.js",
"clean": "rimraf dist",
"example":
"webpack-dev-server --config webpack.example.js --colors --hot --progress",
"lint": "eslint src",
"prepublish": "npm run test && npm run clean && npm run build",
"test": "jest"
},
"keywords": ["react", "feature gate", "feature toggle"],
"repository": {
"type": "git",
"url": "https://github.com/waffleau/react-feature-gate.git"
},
"homepage": "https://github.com/waffleau/react-feature-gate",
"bugs": "https://github.com/waffleau/react-feature-gate/issues",
"author": "Matt Ellis",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"enzyme": "^2.4.1",
"eslint": "^3.1.1",
"eslint-config-prettier": "^2.1.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.1",
"prettier": "^1.3.1",
"prop-types": "^15.5.10",
"random-string": "^0.2.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.0.0",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
}
}