forked from scttcper/transmission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "@ctrl/transmission",
"version": "0.0.0-placeholder",
"description": "TypeScript api wrapper for transmission using got",
"author": "Scott Cooper <[email protected]>",
"license": "MIT",
"repository": "scttcper/transmission",
"keywords": [
"transmission",
"typescript"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"build:docs": "typedoc",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"test:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage"
},
"dependencies": {
"@ctrl/shared-torrent": "^3.0.5",
"got": "^11.8.3",
"@ctrl/url-join": "^1.0.4"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.16.8",
"@babel/preset-typescript": "7.16.7",
"@ctrl/eslint-config": "3.3.1",
"@jest/globals": "27.4.6",
"@types/node": "17.0.14",
"jest": "27.4.7",
"jest-junit": "13.0.0",
"p-wait-for": "3.2.0",
"typedoc": "0.22.11",
"typescript": "4.5.5"
},
"jest": {
"testEnvironment": "node",
"coverageProvider": "v8"
},
"babel": {
"presets": [
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"publishConfig": {
"access": "public"
},
"release": {
"branch": "master"
},
"engines": {
"node": ">=10.19.0"
}
}