-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.12 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
{
"name": "@abranhe/generator-nm",
"version": "1.0.0",
"description": "Scaffold out a node module with my personal style",
"license": "MIT",
"homepage": "https://p.abranhe.com/generator-abranhe-nm",
"repository": "abranhe/generator-abranhe-nm",
"author": {
"name": "Carlos Abraham",
"email": "abraham@abranhe.com",
"url": "https://abranhe.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"plugin",
"boilerplate",
"template",
"scaffold",
"node",
"module",
"node_module",
"node-module",
"init",
"abranhe"
],
"dependencies": {
"humanize-url": "^2.1.0",
"is-scoped": "^2.1.0",
"normalize-url": "^4.3.0",
"superb": "^4.0.0",
"underscore.string": "^3.0.3",
"yeoman-generator": "^4.0.0"
},
"devDependencies": {
"ava": "^1.4.1",
"pify": "^4.0.1",
"xo": "^0.24.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.0.0"
},
"ava": {
"failWithoutAssertions": false
},
"xo": {
"ignores": [
"app/templates/**"
]
}
}