-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "react-router-to-array",
"version": "0.1.3",
"description": "Convert your react router component to an array with all static routes",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib --copy-files --loose-mode",
"test": "babel-node ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alansouzati/react-router-to-array.git"
},
"keywords": [
"react",
"react-router",
"jsx",
"parser"
],
"authors": [
"alansouzati"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alansouzati/react-router-to-array/issues"
},
"homepage": "https://github.com/alansouzati/react-router-to-array#readme",
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.18",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"react": "^15.1.0",
"react-router": "^2.4.1",
"tape": "^4.0.0"
}
}