-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "deluge-rpc-socket",
"version": "0.5.0-alpha",
"description": "Node.js API for Deluge's Binary Socket RPC API",
"main": "dist/DelugeRPC.js",
"types": "dist/DelugeRPC.d.ts",
"scripts": {
"format": "prettier **/*",
"spellcheck": "cspell **/*",
"test": "jest",
"preversion": "yarn format --write",
"build": "tsc --declaration",
"clean": "rm -f dist",
"checks": "yarn format && yarn build && yarn test",
"prepare": "yarn build",
"start": "yarn repl",
"prerepl": "yarn clean",
"repl": "ts-node repl.ts --experimental-repl-await",
"setup": "yarn && yarn mkconfig && install-vscode-extensions",
"mkconfig": "echo Making new config.js for testing purposes. Please update it manually. && cp -i config.sample.js config.js"
},
"files": [
"dist/DelugeRPC.js",
"dist/DelugeRPC.d.ts",
"dist/utils/AllPromises.js",
"dist/utils/AllPromises.d.ts",
"dist/utils/Awaitable.js",
"dist/utils/Awaitable.d.ts",
"dist/utils/SharedPromise.js",
"dist/utils/SharedPromise.d.ts"
],
"repository": "git@github.com:cinderblock/node-deluge-rpc.git",
"author": "Cameron Tacklind <cameron@tacklind.com>",
"license": "MIT",
"dependencies": {
"camelcase-keys-deep": "^0.1.0",
"pako": "^1.0.10",
"python-rencode": "^1.4.4",
"smallest-power-of-two": "^1.1.2",
"snakecase-keys": "^3.1.0"
},
"devDependencies": {
"@types/camelcase-keys-deep": "^0.1.0",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"@types/pako": "^1.0.1",
"coveralls": "^3.0.9",
"cspell": "^4.0.43",
"install-vscode-extensions": "^1.0.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"repl-live": "^0.1.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"yarn": "^1.21.1"
}
}