-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (60 loc) · 2.09 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": "noah-npm",
"version": "1.0.0",
"description": "Noah is a boilerplate for building front-end web apps using NPM build scripts.",
"author": "T-Mex",
"contributors": [
"Edmund Reed <[email protected]>"
],
"dependencies": {
"assemble": "^0.17.1",
"autoprefixer": "^6.5.1",
"browser-sync": "^2.18.5",
"chai": "^3.5.0",
"fs-extra": "^0.30.0",
"gulp-extname": "^0.2.2",
"handlebars": "^4.0.5",
"handlebars-helper-repeat": "^0.3.1",
"handlebars-helpers": "^0.7.5",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"karma": "^1.3.0",
"karma-chai-plugins": "^0.8.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"mkdirp": "^0.5.1",
"mocha": "^3.1.2",
"mz": "^2.4.0",
"node-sass": "^3.10.1",
"npm-run-all": "^3.1.1",
"postcss": "^5.2.5",
"pre-commit": "^1.1.3",
"sass-lint": "^1.9.1",
"uglify-js": "^2.7.4"
},
"scripts": {
"assemble" : "./node_modules/assemble/bin/cli.js app",
"browsersync": "node ./build/tasks/browser-sync.js",
"clean" : "node ./build/tasks/clean.js",
"concat" : "node ./build/tasks/concat.js",
"copy" : "node ./build/tasks/copy.js",
"jshint" : "./node_modules/jshint/bin/jshint assets/js/*.js --exclude assets/vendor/**/* --reporter=node_modules/jshint-stylish",
"postcss" : "node ./build/tasks/postcss.js",
"sass" : "node ./build/tasks/sass.js",
"scsslint" : "./node_modules/sass-lint/bin/sass-lint.js -v",
"test" : "node ./build/tasks/karma.js",
"uglify" : "node ./build/tasks/uglify.js",
"images" : "npm-run-all -s copy",
"css" : "npm-run-all -s sass postcss",
"js" : "npm-run-all -s concat uglify",
"compile" : "npm-run-all -p scsslint jshint clean css js images",
"build" : "npm-run-all -p compile assemble",
"serve" : "npm-run-all -s build browsersync",
"go" : "npm run browsersync",
"ci" : "npm run compile"
},
"pre-commit": [
"compile", "assemble", "test"
]
}