-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.29 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
{
"name": "generator-digga",
"version": "0.3.0",
"description": "A scaffold for REST API",
"homepage": "",
"author": {
"name": "Ugo Briasco",
"email": "[email protected]",
"url": "https://ugobriasco.me"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"express rest api",
"yeoman-generator"
],
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-xo": "^0.34.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^4.0.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^4.1.0",
"yeoman-generator": "^4.12.0",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": "ugobriasco/generator-digga",
"license": "MIT"
}