-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.96 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.96 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "node-express-fast-progress",
"version": "0.2.3",
"description": "This generator will help you to build your own Node.js Express API",
"homepage": "https://github.com/ChechaValerii",
"author": {
"name": "chechavalerii",
"email": "chechavalera@gmail.com",
"url": "https://github.com/ChechaValerii"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"api",
"node",
"express",
"rest",
"generator",
"starter",
"yeoman-generator",
"rest",
"mongoose",
"nodejs",
"node.js"
],
"devDependencies": {
"yeoman-test": "^2.0.0",
"yeoman-assert": "^3.1.1",
"coveralls": "^3.0.6",
"eslint": "^6.2.1",
"prettier": "^1.18.2",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"jest": "^24.9.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"yeoman-generator": "^4.0.1",
"chalk": "^2.4.2",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node"
},
"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"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"repository": "ChechaValerii/node-express-fast-progress",
"license": "Apache-2.0"
}