-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 1.33 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
{
"name": "generator-microservice",
"version": "1.0.0",
"description": "Yeoman generator for building microservices",
"main": "generators/app/index.js",
"homepage": "https://github.com/OKTAYKIR/generator-microservice",
"scripts": {
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest"
},
"repository": "/generator-microservice",
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"microservice",
"dotnetcore",
"c#",
"webapi",
"restful",
"yeoman-generator"
],
"author": {
"name": "Oktay Kır",
"email": "[email protected]",
"url": "https://github.com/OKTAYKIR"
},
"license": "Apache-2.0",
"dependencies": {
"chalk": "^1.0.0",
"mkdirp": "^0.5.1",
"random-number": "0.0.7",
"uuid": "^2.0.1",
"yeoman-generator": "^0.21.1",
"yosay": "^1.0.2"
},
"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"
]
}
}