-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 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
54
55
56
{
"name": "papergen",
"repository": "fdesjardins/papergen",
"version": "0.0.4",
"author": {
"name": "Forrest Desjardins",
"email": "desjardinsfg@gmail.com",
"url": "https://github.com/fdesjardins"
},
"engines": {
"node": ">=7"
},
"scripts": {
"test": "eslint *.js && nyc mocha test.js"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"paper",
"pages",
"notebook",
"stationery",
"printing",
"loose leaf",
"generator",
"maker",
"creator",
"printer",
"designer"
],
"dependencies": {
"canvas": "^2.10.2",
"paper-rulings": "^1.3.15",
"paper-size": "^1.1.0"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}