-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.39 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
{
"name": "ConnectDashBoard",
"version": "0.0.0",
"licence": "",
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"gulp",
"browserify",
"angular",
"less",
"boilerplate"
],
"dependencies": {},
"devDependencies": {
"babel": "~6.3.13",
"babel-preset-es2015": "~6.3.13",
"babelify": "^6.1.2",
"browserify": "~12.0.1",
"browserify-shim": "~3.8.11",
"del": "~2.2.0",
"gulp": "~3.9.0",
"gulp-autoprefixer": "~3.1.0",
"gulp-changed": "~1.1.1",
"gulp-concat": "~2.6.0",
"gulp-imagemin": "2.1.0",
"gulp-jshint": "~1.9.2",
"gulp-htmlmin": "~1.3.0",
"gulp-less": "latest",
"gulp-livereload": "~3.8.1",
"gulp-cssnano": "~2.1.0",
"gulp-server-livereload": "^1.5.4",
"gulp-strip-debug": "1.1.0",
"gulp-uglify": "^1.5.1",
"lodash": "^3.10.1",
"run-sequence": "^1.1.5",
"vinyl-source-stream": "^1.1.0"
},
"browserify": {
"transform": [["babelify", {"sourceMapRelative": "./app/src"}], "browserify-shim"]
},
"browser": {
"angular": "./app/src/scripts/lib/angular.min.js",
"ngRoute": "./app/src/scripts/lib/angular-route.min.js"
},
"browserify-shim": {
"angular": {
"exports": "angular"
},
"ngRoute": {
"depends": ["angular"],
"exports": "null"
}
},
"engines": {
"node": ">=4.2.4"
},
"scripts": {
"test": "gulp test"
}
}