-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.94 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
{
"name": "ngwp",
"version": "3.0.0-beta",
"license": "MIT",
"description": "Angular 1.x.x scaffold (Webpack, AngularJS 1.6.3, ES6, SCSS, Jade/Pug)",
"homepage": "https://github.com/DavidKk/ngwp",
"repository": {
"type": "git",
"url": "https://github.com/DavidKk/ngwp.git"
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"yamllint": "yamllint .travis.yml && yamllint appveyor.yml",
"standard": "standard --fix './src/**/*.js' './unitest/**/*.js' --parser babel-eslint",
"lint": "npm run yamllint && npm run standard",
"mocha": "mocha --require babel-polyfill --compilers js:babel-register ./unitest/*.spec.js",
"coverage": "rimraf ./coverage && nyc --reporter=text --reporter=lcov --report-dir=./coverage/cli npm run mocha",
"coveralls": "npm run coverage && babel-node ./src/coveralls.js",
"unitest": "npm run lint && npm run mocha",
"product": "rimraf ./dist && babel ./src --out-dir ./dist",
"develop": "babel ./src --out-dir ./dist --watch",
"start": "npm run develop"
},
"bin": {
"ngwp": "./bin/ngwp"
},
"devDependencies": {
"command-exists": "^1.2.2",
"lint-staged": "^4.2.3",
"standard": "^10.0.3",
"yaml-lint": "^1.0.0"
},
"dependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.1.0",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-stage-0": "^6.1.2",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.9",
"columnify": "^1.5.4",
"commander": "^2.9.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"eslint": "^3.0.1",
"extract-text-webpack-plugin": "^2.0.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.10.1",
"fs-extra": "^2.0.0",
"handlebars": "^4.0.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.17.0",
"image-webpack-loader": "^3.2.0",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"lodash": "^4.14.0",
"mocha": "^3.0.2",
"ng-annotate-loader": "^0.2.0",
"node-sass": "^4.5.0",
"nyc": "^11.2.1",
"postcss-loader": "^1.3.2",
"pug-loader": "^2.3.0",
"rimraf": "^2.6.0",
"sass-loader": "^6.0.2",
"sinon": "^2.0.0",
"spritesheet-templates": "^10.1.4",
"style-loader": "^0.14.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^4.1.0",
"webpack-spritesmith": "^0.3.1",
"webpack-svgstore-plugin": "^4.0.1"
}
}