This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "react-awesome-feature-toggles",
"version": "0.0.3",
"license": "MIT",
"description": "Simple feature toggles for react and react router",
"keywords": [
"react",
"react-router",
"router",
"feature-toggles",
"feature",
"toggles"
],
"repository": {
"type": "git",
"url": "https://github.com/Nilos/react-feature-toggles"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "babel src -d dist",
"watch": "babel --watch src -d dist",
"lint": "eslint src tests",
"lint:fix": "npm run lint -- --fix",
"test": "mocha tests/*.spec.js tests/**/*.spec.js --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean & npm run build"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-3": "^6.22.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jsdom": "^9.11.0",
"mocha": "^2.4.5",
"react": "15.x",
"react-addons-test-utils": "^15.4.2",
"react-dom": "15.x",
"react-router": "3.x",
"rimraf": "^2.5.2"
},
"dependencies": {
"babel-runtime": "^6.6.1"
},
"peerDependencies": {
"prop-types": "15.5.8",
"react": "15.x",
"react-dom": "15.x",
"react-router": "^2.0.0 || ^3.0.0"
}
}