-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.61 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
{
"name": "@ctrl/tracker-definitions",
"version": "0.0.0-placeholder",
"description": "API definitions for your favorite tracker",
"author": "Scott Cooper <scttcper@gmail.com>",
"license": "MIT",
"repository": "typectrl/jackett-definitions",
"keywords": [
"Torznab",
"jackett",
"cardigann",
"torrent",
"tracker"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"update": "ts-node scripts/build-definitions.ts",
"lint": "eslint --ext .js,.ts, .",
"lint:fix": "eslint --fix --ext .js,.ts, .",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.15.4",
"@babel/preset-typescript": "7.15.0",
"@ctrl/eslint-config": "2.1.0",
"@types/jest": "27.0.2",
"@types/js-yaml": "4.0.3",
"@types/lodash": "4.14.173",
"@types/node": "16.9.4",
"@types/prettier": "2.3.2",
"del": "6.0.0",
"jest": "27.2.1",
"jest-junit": "12.2.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"prettier": "2.4.1",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"jest": {
"rootDir": "test",
"testEnvironment": "node"
},
"babel": {
"presets": [
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"publishConfig": {
"access": "public"
},
"release": {
"branch": "master"
},
"engines": {
"node": ">=10.0.0"
},
"volta": {
"node": "15.8.0",
"npm": "7.5.4"
}
}