-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "BusRouteJS",
"version": "3.0.0",
"description": "A JS rewrite of the original bus route finder",
"repository": {
"type": "git",
"url": "git+https://github.com/janithl/BusRouteJS.git"
},
"license": "MIT",
"homepage": "https://github.com/janithl/BusRouteJS",
"main": "js/app.js",
"dependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^11.0.1",
"browserify-shim": "^3.8.12",
"watchify": "^3.4.0"
},
"scripts": {
"build": "browserify js/app.js -t babelify -t browserify-shim | uglifyjs > bundle.js",
"start": "watchify js/app.js -v -t babelify -t browserify-shim -o bundle.js",
"test": "jest"
},
"jest": {
"testRegex": "js/tests/.*\\.js$"
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"devDependencies": {
"babel-jest": "^14.0.0",
"babel-polyfill": "^6.9.1"
}
}