-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "dlts-epub-manager",
"version": "0.0.1",
"description": "DLTS EPUB Manager",
"main": "em.js",
"scripts": {
"test": "yarn run test:lib && yarn run test:acceptance",
"test:acceptance": "node_modules/.bin/jest --runInBand test/acceptance/",
"test:lib": "node_modules/.bin/jest lib/"
},
"repository": {
"type": "git",
"url": "[email protected]:da70/dlts-epub-manager.git"
},
"author": "da70",
"license": "ISC",
"dependencies": {
"adm-zip": "0.4.16",
"dateformat": "3.0.3",
"glob": "7.1.6",
"json-stable-stringify": "1.0.1",
"lodash": "4.17.20",
"pixl-xml": "1.0.13",
"rimraf": "3.0.2",
"striptags": "3.1.1",
"sync-fetch": "^0.3.0",
"vorpal": "^1.12.0"
},
"devDependencies": {
"chai": "4.2.0",
"dir-compare": "2.3.0",
"jest": "^26.5.2"
},
"jshintConfig": {
"bitwise": true,
"curly": true,
"eqeqeq": true,
"esnext": true,
"forin": true,
"globals": {
"describe": true,
"it": true
},
"noarg": true,
"node": true,
"noempty": true,
"nonew": true,
"onevar": true,
"strict": true,
"trailing": true,
"undef": true,
"white": true
}
}