forked from sindresorhus/generator-nm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 1.94 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
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
{
"name": "generator-channelape",
"version": "0.2.3",
"description": "Scaffold Node TypeScript Web Application to accept webhooks from ChannelApe.",
"repository": {
"type": "git",
"url": "git+https://github.com/ChannelApe/generator-channelape.git"
},
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "xo",
"unit-test": "ava",
"pretest": "npm run lint",
"test": "npm run unit-test",
"posttest": "npm run cover",
"cover": "nyc npm run unit-test"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"plugin",
"boilerplate",
"template",
"scaffold",
"node",
"module",
"node_module",
"node-module",
"init",
"channelape",
"typescript",
"ecommerce"
],
"publishConfig": {
"access": "public"
},
"author": "ChannelApe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ChannelApe/generator-channelape/issues"
},
"homepage": "https://github.com/ChannelApe/generator-channelape#readme",
"contributors": [
{
"name": "R.J. Davis",
"email": "[email protected]"
},
{
"name": "Ryan Kazokas",
"email": "[email protected]"
},
{
"name": "Frank Mazzarella",
"email": "[email protected]"
},
{
"name": "Craig A. Simko",
"email": "[email protected]"
}
],
"dependencies": {
"is-scoped": "^1.0.0",
"underscore.string": "^3.0.3",
"yeoman-generator": "^1.0.1"
},
"devDependencies": {
"ava": "*",
"cross-spawn": "^6.0.5",
"nyc": "^11.7.3",
"pify": "^3.0.0",
"sinon": "^6.2.0",
"xo": "*",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.0.0"
},
"ava": {
"failWithoutAssertions": false
},
"xo": {
"ignores": [
"app/templates/**"
],
"space": true
},
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"report-dir": "./reports/lcov"
}
}