-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.62 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.62 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
{
"name": "@sendit-th/generator-node-api",
"version": "0.0.9",
"description": "A boilerplate generator",
"repository": {
"type": "git",
"url": "git+https://github.com/sendit-th/generator-node-api.git"
},
"homepage": "https://github.com/sendit-th/generator-node-api#readme",
"author": "NV4RE",
"files": [
"generators"
],
"main": "generators/app/index.js",
"keywords": [
"boilerplate",
"yeoman-generator"
],
"devDependencies": {
"yeoman-test": "1.7.0",
"yeoman-assert": "3.1.0",
"coveralls": "3.0.2",
"eslint": "5.9.0",
"prettier": "1.15.2",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.0",
"eslint-config-xo": "0.25.0",
"jest": "23.5.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"change-case": "3.1.0",
"nodegit": "0.24.3",
"rimraf": "2.6.3",
"uuid": "3.3.2",
"yaml": "1.6.0",
"yeoman-generator": "2.0.1"
},
"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",
"no-template-curly-in-string": "off"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sendit-th/generator-node-api/issues"
}
}