-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 1.84 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
{
"name": "generator-eggjs",
"version": "1.2.1",
"description": "Boilerplates for Egg.js",
"homepage": "https://github.com/eggjs-community/generator-eggjs",
"author": {
"name": "Suyi <Thonatos.Yang>",
"email": "[email protected]",
"url": "https://www.thonatos.com/"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"Egg.js",
"eggjs",
"egg",
"yeoman-generator"
],
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"lint-staged": "^4.3.0",
"nsp": "^2.8.1",
"prettier": "^1.12.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.7.0"
},
"dependencies": {
"camel-case": "^3.0.0",
"chalk": "^1.1.3",
"fs-plus": "^3.0.2",
"gulp-rename": "^1.2.2",
"yeoman-generator": "^1.0.0",
"yosay": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/generators/app/templates/"
]
},
"scripts": {
"tool": "node tool",
"prepublish": "nsp check",
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"repository": "eggjs-community/generator-eggjs",
"license": "MIT"
}