-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.33 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.33 KB
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
{
"name": "generator-spring-gae-react",
"version": "3.1.1",
"description": "Yeoman generator for a React app that runs atop Spring on Google App Engine",
"homepage": "https://github.com/3wks/generator-spring-gae-react",
"author": {
"name": "Dave Kuhn",
"email": "dave@3wks.com.au",
"url": "https://www.3wks.com.au"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"react",
"javascript",
"es6",
"thundr",
"google-app-engine",
"java",
"yeoman-generator"
],
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-xo-space": "0.19.0",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"nsp": "3.2.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.8.0"
},
"dependencies": {
"chalk": "^2.4.1",
"lodash": "4.17.15",
"random-string": "^0.2.0",
"slugify": "^1.3.0",
"yeoman-generator": "^3.0.0",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"prepare": "npm audit --audit-level critical",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"engines": {
"node": ">=8.9.3",
"npm": ">=5.5.1"
},
"repository": "3wks/generator-thundr-gae-react",
"license": "MIT"
}