-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 1.89 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 1.89 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "generator-node-oss",
"version": "3.2.0",
"description": "Create a Node.js project with ease",
"license": "MIT",
"preferGlobal": true,
"repository": "https://github.com/luftywiranda13/generator-node-oss",
"author": {
"name": "Lufty Wiranda",
"email": "lufty.wiranda@gmail.com",
"url": "https://www.instagram.com/luftywiranda13"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test:watch": "jest --watch",
"test": "xo && jest --coverage"
},
"files": [
"app"
],
"husky": {
"hooks": {
"pre-commit": "remove-lockfiles && lint-staged"
}
},
"dependencies": {
"chalk": "^2.3.0",
"command-exists": "^1.2.2",
"find-up": "^3.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.includes": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"make-dir": "^1.1.0",
"yeoman-generator": "^3.1.1"
},
"devDependencies": {
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"remove-lockfiles": "^2.0.4",
"xo": "^0.23.0",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "es5"
},
"xo": {
"envs": [
"jest"
],
"ignores": [
"app/templates/**"
],
"prettier": true,
"space": true
},
"keywords": [
"yeoman-generator",
"yeoman",
"generator",
"generator-node",
"automate",
"automated",
"easy",
"boilerplate",
"scaffold",
"starter-kit",
"template",
"javascript",
"module",
"node_module",
"node-module",
"node",
"nodejs",
"npm",
"open-source",
"babel",
"eslint",
"jest",
"prettier",
"xo"
]
}