-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.18 KB
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
{
"name": "angular-project-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for new angular.js project with setted up all environment and build process.",
"main": "",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"test:dev": "./node_modules/.bin/gulp test --watch",
"dev": "./node_modules/.bin/gulp serve --watch",
"build:dev": "./node_modules/.bin/gulp build",
"build:prod": "./node_modules/.bin/gulp build --env=prod",
"serve:dev": "./node_modules/.bin/gulp serve",
"serve:prod": "./node_modules/.bin/gulp serve --env=prod"
},
"keywords": [],
"author": "Pavel Grinchenko <psdcoder@gmail.com>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "6.0.1",
"browser-sync": "^2.8.2",
"chai": "3.4.0",
"del": "^2.0.0",
"gulp": "^3.9.0",
"gulp-angular-templatecache": "1.7.0",
"gulp-filter": "3.0.1",
"gulp-htmlhint": "0.3.0",
"gulp-if": "1.2.5",
"gulp-imagemin": "2.3.0",
"gulp-jscs": "^3.0.0",
"gulp-jshint": "^1.11.2",
"gulp-ng-annotate": "1.1.0",
"gulp-paths-injector": "https://github.com/PSDCoder/gulp-paths-injector.git#c8501190971b7a767d1c70dc2ded7d4b8b3a0899",
"gulp-plumber": "^1.0.1",
"gulp-postcss": "^6.0.0",
"gulp-rename": "1.2.2",
"gulp-minify-css": "1.2.1",
"gulp-rev": "6.0.1",
"gulp-rev-delete-original": "0.0.2",
"gulp-rev-replace": "0.4.2",
"gulp-sass": "^2.0.4",
"gulp-savefile": "0.1.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-svg-sprite": "1.2.9",
"gulp-svgfallback": "3.0.2",
"gulp-template": "3.0.0",
"gulp-uglify": "1.4.0",
"gulp-useref": "1.3.0",
"gulp-watch": "^4.3.5",
"gulp.spritesmith": "4.1.0",
"imagemin-pngquant": "4.2.0",
"jshint-stylish": "^2.0.1",
"karma": "0.13.14",
"karma-chai": "0.1.0",
"karma-mocha": "0.2.0",
"karma-phantomjs-launcher": "0.2.1",
"karma-sinon": "1.0.4",
"karma-spec-reporter": "0.0.21",
"merge-stream": "1.0.0",
"minimist": "^1.2.0",
"mocha": "2.3.3",
"phantomjs": "1.9.18",
"phantomjs-polyfill": "0.0.1",
"run-sequence": "^1.1.2",
"sinon": "1.17.2",
"xmldom": "0.1.19"
}
}