-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "opds-fetcher-parser",
"version": "0.1.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"engines": {
"node": "14"
},
"license": "BSD-3-Clause",
"licenses": [
{
"type": "BSD-3-Clause",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
],
"keywords": [],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.11",
"@types/tough-cookie": "^4.0.1",
"gts": "^3.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.0.3"
},
"dependencies": {
"moment": "^2.29.1",
"nanoid": "^3.1.23",
"r2-lcp-js": "^1.0.30",
"r2-opds-js": "^1.0.35",
"r2-shared-js": "^1.0.51",
"ts-fetch": "github:edrlab/ts_fetch#bdb3444e608e6ae894a01cd703805e06ec991d66"
}
}