-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.66 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
{
"name": "@domoapps/generator-github-create",
"version": "0.5.3",
"description": "Yeoman generator for github authentication, create repository, README Badges, local git initialization, and local commit and push.",
"keywords": [
"yeoman-generator",
"scaffold",
"github",
"repository",
"create",
"create repository",
"organization",
"git",
"authentication",
"authenticate"
],
"main": "generators/app/index.js",
"files": [
"generators/app",
"generators/authenticate",
"generators/create",
"generators/shared"
],
"engines": {
"node": ">=6.4",
"npm": ">=3.10.3"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "rm -rf ./generators && babel --out-dir ./generators --extensions .es6 --copy-files ./src/generators",
"build:watch": "rm -rf ./generators && babel --watch --out-dir ./generators --extensions .es6 --copy-files ./src/generators",
"lint": "eslint ./test/**/*.js ./src/**/*.es6",
"postversion": "git push && git push --tags && npm publish --access public",
"release:patch": "npm test && npm run build && npm version patch",
"release:minor": "npm test && npm run build && npm version minor",
"release:major": "npm test && npm run build && npm version major",
"release:quick": "npm test && npm run build && git add -A && git commit -m 'Quick Release Patch' && npm version patch",
"test": "npm run lint && cross-env NODE_ENV=test nyc mocha test/**/*.spec.js",
"test:watch": "npm run lint && cross-env NODE_ENV=test nyc mocha --watch test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trainerbill/generator-github-create.git"
},
"author": "Andrew Throener",
"license": "ISC",
"bugs": {
"url": "https://github.com/trainerbill/generator-github-create/issues"
},
"homepage": "https://github.com/trainerbill/generator-github-create#readme",
"dependencies": {
"github": "^9.2.0",
"lodash.defaults": "^4.2.0",
"lodash.find": "^4.6.0",
"lodash.merge": "^4.6.0",
"lodash.upperfirst": "^4.3.1",
"shelljs": "^0.7.4",
"winston": "^2.2.0",
"yeoman-generator": "^0.24.1",
"yosay": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-es2015-node6": "^0.3.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.11.12",
"cross-env": "^2.0.1",
"eslint": "^3.4.0",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.4.0"
}
}