-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 852 Bytes
/
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
{
"name": "react-router-fetcher",
"description": "Data fetching with react router",
"version": "0.0.9",
"author": {
"name": "Oleg Martynov",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/olegman/react-router-fetcher/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/olegman/react-router-fetcher.git"
},
"license": "MIT",
"scripts": {
"watch": "babel ./src/index.js -w -o ./index.js",
"transpile": "babel ./src/index.js -o ./index.js",
"minify": "uglifyjs ./index.js -o ./index.js -c -m"
},
"dependencies": {
"react": "0.14.x || 15.x.x"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"uglify-js": "^2.6.2"
}
}