-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.95 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": "generator-subgenext",
"version": "0.0.1",
"description": "Add custom sub generators to a Yeoman host generator",
"main": "generators/app/index.js",
"files": [
"generators/activate",
"generators/app",
"generators/deactivate",
"generators/scan",
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sthzg/generator-subgenext.git"
},
"author": {
"name": "Stephan Herzog",
"email": "sthzgvie@gmail.com",
"url": "https://github.com/sthzg"
},
"contributors": [
{
"name": "Chris Landa",
"email": "stylesuxx@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sthzg/generator-subgenext/issues"
},
"homepage": "https://github.com/sthzg/generator-subgenext#readme",
"dependencies": {
"chalk": "^1.1.3",
"immutable": "^3.8.1",
"lodash": "^4.13.1",
"rimraf": "^2.5.2",
"semver": "^5.2.0",
"yeoman-generator": "^0.23.4"
},
"devDependencies": {
"chai": "^3.5.0",
"contrib-subgen-yoburger-bbq": "0.0.3",
"coveralls": "^2.11.9",
"fs-extra": "^0.30.0",
"generator-yoburger": "0.0.3",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mock-fs": "^3.9.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.4.0"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha -w",
"test:cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report html --report text",
"test:travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
}
}