-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.23 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
{
"name": "epubavocado",
"version": "0.4.0",
"description": "I am an EPUB object model aspiring to be standards compliant.",
"main": "lib/cjs/models.js",
"module": "lib/esm/models.js",
"browser": "dist/epubavocado.js",
"types": "src/models.ts",
"scripts": {
"clean": "rimraf lib dist",
"build": "npm run clean && tsc && tsc -p tsconfig.cjs.json && rollup -c",
"test": "jest",
"test:browser": "karma start",
"start": "npm run start:graphql",
"start:graphql": "concurrently \"tsc -p tsconfig.cjs.json -w\" \"nodemon --delay 500ms ./test/graphql/_graphiql.js\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jccr/epubavocado.git"
},
"keywords": [
"epub",
"parser",
"object",
"model",
"api",
"xml",
"json",
"js",
"javascript",
"typescript"
],
"author": "Juan Carlos Corona Romero <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jccr/epubavocado/issues"
},
"homepage": "https://github.com/jccr/epubavocado#readme",
"devDependencies": {
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"concurrently": "^7.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"express-graphql": "^0.12.0",
"graphql": "^16.3.0",
"jasmine": "^4.0.2",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"puppeteer": "^13.3.1",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"xmldom": "^0.6.0"
},
"dependencies": {
"xpath": "0.0.32"
}
}