-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
43 lines (43 loc) · 1.43 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
{
"name": "epub-tests",
"version": "1.0.4",
"description": "Automatic reporting of EPUB 3 testing results",
"directories": {
"test": "tests"
},
"scripts": {
"debug": "./node_modules/ts-node/dist/bin.js src/main.ts -t",
"generate": "./node_modules/ts-node/dist/bin.js src/main.ts",
"respec": "(cd docs/drafts; ../../node_modules/respec/tools/respec2html.js --localhost -s index.html -o ../index.html; ../../node_modules/respec/tools/respec2html.js --localhost -s results.html -o ../results.html)",
"lint": "eslint . --ext .ts",
"add_metadata": "./node_modules/ts-node/dist/bin.js src/add_metadata.ts",
"modify_metadata": "./node_modules/ts-node/dist/bin.js src/change_opf.ts"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/w3c/epub-tests.git"
},
"author": "Ivan Herman, Dan Lazin",
"license": "W3C-20150513",
"bugs": {
"url": "/~https://github.com/w3c/epub-tests/issues"
},
"homepage": "/~https://github.com/w3c/epub-tests#readme",
"dependencies": {
"@types/jsdom": "^16.2.14",
"@types/jszip": "^3.4.1",
"@types/node": "^16.9.4",
"@types/xml2js": "^0.4.9",
"jsdom": "^19.0.0",
"jszip": "^3.7.1",
"respec": "^28.2.8",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0"
}
}