-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.42 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
{
"name": "@mondomob/generator-gae-node-nestjs",
"version": "2.3.1",
"description": "A generator for building nestjs apps on app engine node",
"repository": "https://github.com/mondo-mob/generator-gae-node-nestjs",
"author": {
"name": "Glenn Molnar",
"email": "glenn@mondomob.com",
"url": ""
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"node",
"gae",
"app engine",
"nestjs",
"yeoman-generator"
],
"devDependencies": {
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-xo": "0.35.0",
"eslint-plugin-prettier": "3.3.1",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "5.1.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "4.1.0",
"change-case": "4.1.2",
"lodash": "4.17.21",
"pluralize": "^8.0.0",
"slugify": "1.5.0",
"yeoman-generator": "4.13.0",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"prepublishOnly": "npm audit --audit-level high",
"pretest": "eslint .",
"lint-fix": "eslint --fix --ext js,json generators",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"license": "MIT"
}