-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
82 lines (82 loc) · 2.01 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
{
"name": "AngularJS-Gulp-Browserify-Starter",
"version": "0.0.0",
"description": "Base AngularJS application with gulp and browserify",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/goodbomb/angular-gulp-browserify-starter"
},
"license" : "MIT",
"authors": "Ben Scott <[email protected]>",
"private": false,
"engines": {
"node": "0.10.38"
},
"scripts": {
"start": "node server.js"
},
"browserify-shim": {
"angular": {
"exports": "angular"
}
},
"browserify": {
"transform": [
"browserify-shim",
"partialify",
"debowerify"
]
},
"browser": {
"angular": "./libs/angular/angular.js"
},
"devDependencies": {
"bower": "latest",
"browserify": "^11.1.0",
"browserify-istanbul": "^0.2.1",
"browserify-shim": "^3.8.10",
"chai": "^3.3.0",
"debowerify": "^1.3.1",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.1",
"gulp-concat": "^2.6.0",
"gulp-connect": "^2.2.0",
"gulp-if": "^1.2.5",
"gulp-jscs": "^2.0.0",
"gulp-jshint": "^1.11.2",
"gulp-less": "^3.0.3",
"gulp-minify-css": "1.2.1",
"gulp-notify": "^2.2.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.4.1",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.10",
"karma-browserify": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.2",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon": "^1.0.4",
"karma-spec-reporter": "0.0.20",
"logfmt": "^1.2.0",
"mocha": "^2.3.3",
"notify-send": "^0.1.2",
"partialify": "3.1.5",
"phantomjs": "^1.9.18",
"protractor": "^2.2.0",
"run-sequence": "^1.1.3",
"sinon": "^1.16.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
},
"dependencies": {
"connect": "^3.4.0",
"express": "^4.13.3",
"proxy-middleware": "^0.14.0"
}
}