-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·111 lines (111 loc) · 3.56 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "ngwp",
"version": "3.0.3",
"license": "MIT",
"description": "Angular 1.x.x scaffold (Webpack, AngularJS 1.6.3, ES6, SCSS, 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"
]
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/node_modules/**"
]
},
"scripts": {
"precommit": "lint-staged",
"yamllint": "yamllint .travis.yml && yamllint appveyor.yml",
"eslint": "eslint --config .eslintrc.js --ext .js --fix './src/**/*.js' './test/**/*.js'",
"lint": "npm run yamllint & npm run eslint",
"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",
"test": "npm run lint && npm run mocha",
"product": "rimraf ./libs && babel ./src --out-dir ./libs && cpx \"src/templates/**\" libs/templates",
"develop": "concurrently 'babel ./src --out-dir ./libs --watch' 'cpx \"src/templates/**\" libs/templates --watch --verbose'",
"release": "npm run test && npm run product",
"start": "npm run develop"
},
"bin": {
"ngwp": "./bin/ngwp"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"command-exists": "^1.2.2",
"concurrently": "^3.5.0",
"cpx": "^1.5.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"yaml-lint": "^1.0.0"
},
"dependencies": {
"autoprefixer": "^7.2.5",
"babel-cli": "^6.23.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.9.0",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.9",
"columnify": "^1.5.4",
"commander": "^2.13.0",
"copy-webpack-plugin": "^4.3.0",
"css-loader": "^0.28.8",
"eslint": "^4.15.0",
"extract-text-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^1.1.5",
"fs-extra": "^5.0.0",
"handlebars": "^4.0.5",
"html-loader": "^0.5.4",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.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.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"lodash": "^4.14.0",
"mocha": "^4.0.1",
"ng-annotate-loader": "^0.6.1",
"node-sass": "^4.7.2",
"nyc": "^11.4.1",
"offline-plugin": "^4.8.5",
"phantomjs-prebuilt": "^2.1.16",
"postcss-loader": "^2.0.10",
"postcss-pxtorem": "^4.0.1",
"pug-loader": "^2.3.0",
"rimraf": "^2.6.0",
"sass-loader": "^6.0.2",
"sinon": "^4.1.5",
"spritesheet-templates": "^10.1.4",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"webpack-manifest-plugin": "^1.3.2",
"webpack-merge": "^4.1.0",
"webpack-spritesmith": "^0.4.0",
"webpack-svgstore-plugin": "^4.0.1"
}
}