forked from 4Catalyzer/found
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "found",
"version": "0.2.1",
"description": "Extensible route-based routing for React applications",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src -d lib",
"lint": "eslint examples/*/src src test *.js",
"prepublish": "npm run build",
"tdd": "jest --watch",
"testonly": "jest --runInBand --verbose",
"test": "npm run lint && npm run testonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4Catalyzer/found.git"
},
"keywords": [
"react",
"router",
"routes",
"routing"
],
"author": "4Catalyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/4Catalyzer/found/issues"
},
"homepage": "https://github.com/4Catalyzer/found#readme",
"dependencies": {
"babel-runtime": "^6.18.0",
"farce": "^0.2.1",
"invariant": "^2.2.1",
"is-promise": "^2.1.0",
"lodash": "^4.16.6",
"path-to-regexp": "^1.6.0",
"react-prop-types": "^0.4.0",
"react-redux": "^5.0.0-beta.3",
"react-static-container": "^1.0.1",
"redux": "^3.6.0",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"enzyme": "^2.6.0",
"eslint": "^3.9.1",
"eslint-config-4catalyzer-react": "^0.1.3",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"jest": "^17.0.3",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"rimraf": "^2.5.4"
}
}