-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.06 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
{
"name": "papergen-cli",
"version": "0.1.0",
"description": "Companion CLI for papergen package",
"main": "index.js",
"scripts": {
"test": "eslint *.js && nyc ./node_modules/.bin/mocha --opts mocha.opts test.js"
},
"license": "MIT",
"author": {
"name": "Forrest Desjardins",
"email": "desjardinsfg@gmail.com",
"url": "github.com/fdesjardins"
},
"engines": {
"node": ">=7"
},
"keywords": [
"paper",
"pages",
"notebook",
"stationery",
"printing",
"loose leaf",
"generator",
"maker",
"creator",
"printer",
"designer"
],
"dependencies": {
"papergen": "0.0.3",
"yargs": "^10.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}