-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (42 loc) · 1.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
39
40
41
42
43
{
"name": "AngularExercise",
"version": "0.0.1",
"description": "Angular Exercise",
"main": "index.js",
"scripts": {
"start": "watchify -t partialify index.js -o build/bundle.js -v",
"bundle": "browserify -t partialify index.js -o build/bundle.js"
},
"dependencies": {
"watchify" : "",
"partialify" : "",
"browserify-shim": ""
},
"devDependencies": {
"watchify" : "",
"browserify": "^5.11.2"
},
"browser": {
"angular": "./bower_components/angular/angular.js",
"angularRouter" : "./bower_components/angular-ui-router/release/angular-ui-router.min.js",
"jquery": "./bower_components/jquery/dist/jquery.js"
},
"browserify-shim": {
"angular": {
"exports": "angular"
},
"angularRouter": {
"depends": ["angular"],
"exports": "angularRouter"
},
"jquery": {
"exports": "$"
}
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"author": "Indranil"
}