-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (88 loc) · 2.21 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ionic-todos",
"version": "0.0.1",
"scripts": {
"install": "./node_modules/.bin/napa",
"postinstall": "gulp test"
},
"devDependencies": {
"browserify": "^3.46.1",
"browserify-shim": "^3.4.1",
"chai": "^1.9.1",
"connect": "^2.15.0",
"connect-livereload": "^0.4.0",
"gulp": "^3.6.2",
"gulp-angular-templatecache": "^1.1.3",
"gulp-autoprefixer": "0.0.7",
"gulp-bump": "^0.1.8",
"gulp-clean": "^0.2.4",
"gulp-git": "^0.4.2",
"gulp-jshint": "^1.5.5",
"gulp-livereload": "^1.5.0",
"gulp-load-plugins": "^0.5.1",
"gulp-mocha": "^0.4.1",
"gulp-ngmin": "^0.3.0",
"gulp-plumber": "^0.6.1",
"gulp-sass": "^0.7.1",
"gulp-size": "^0.3.1",
"gulp-util": "^2.2.14",
"jshint-stylish": "^0.2.0",
"napa": "^0.4.1",
"open": "0.0.5",
"run-sequence": "^0.3.6",
"vinyl-buffer": "0.0.0",
"vinyl-source-stream": "^0.1.1",
"watchify": "^0.9.0"
},
"napa": {
"ionic": "driftyco/ionic#v1.0.0-beta.4"
},
"browser": {
"ionic": "./node_modules/ionic/release/js/ionic.js",
"angular": "./node_modules/ionic/release/js/angular/angular.js",
"angular-animate": "./node_modules/ionic/release/js/angular/angular-animate.js",
"angular-resource": "./node_modules/ionic/release/js/angular/angular-resource.js",
"angular-sanitize": "./node_modules/ionic/release/js/angular/angular-sanitize.js",
"ionic-angular": "./node_modules/ionic/release/js/ionic-angular.js",
"angular-ui-router": "./node_modules/ionic/release/js/angular-ui/angular-ui-router.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"angular": "angular",
"ionic": "ionic",
"angular-animate": {
"depends": [
"angular"
]
},
"angular-resource": {
"depends": [
"angular"
]
},
"angular-ui-router": {
"depends": [
"angular"
]
},
"angular-sanitize": {
"depends": [
"angular"
]
},
"ionic-angular": {
"depends": [
"angular",
"angular-animate",
"angular-resource",
"angular-sanitize",
"angular-ui-router",
"ionic"
]
}
}
}