-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 864 Bytes
/
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
{
"name": "generator-ngpack",
"version": "0.0.4",
"description": "Yeoman generator for scaffolding an Angular 1.x app with Webpack",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --opts mocha.opts",
"tdd": "npm run test -- --watch"
},
"author": "Alex Nelson <[email protected]>",
"repository": "walexnelson/generator-ngpack",
"license": "MIT",
"keywords": [
"yeoman-generator",
"yeoman",
"angular",
"webpack"
],
"files": ["generators", "utils"],
"dependencies": {
"mkdirp": "^0.5.1",
"underscore.string": "^3.3.4",
"yeoman-generator": "^1.1.1"
},
"devDependencies": {
"chai": "^4.1.1",
"cross-env": "^5.0.4",
"mocha": "^3.5.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"node": ">=4.0.0"
}
}