-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "generator-deepexi-eggjs",
"version": "1.13.0",
"description": "deepexi eggjs scaffold tool",
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"scaffold",
"generator",
"deepexi",
"eggjs"
],
"dependencies": {
"yeoman-generator": "^1.1.1",
"yo-power-generator": "^0.5.2",
"moment": "^2.24.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.7.0",
"nyc": "^14.1.1",
"standard-version": "^6.0.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"main": "index.js",
"scripts": {
"test": "mocha generators/test/**/*.test.js --reporter spec",
"lint": "eslint .",
"cov": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
"commit": "npx git-cz",
"release": "standard-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepexi/generator-deepexi-eggjs.git"
},
"bugs": {
"url": "https://github.com/deepexi/generator-deepexi-eggjs/issues"
},
"homepage": "https://github.com/deepexi/generator-deepexi-eggjs#readme",
"author": "taccisum",
"license": "ISC"
}