forked from dhleong/playactor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 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
{
"name": "playactor",
"version": "0.3.2",
"description": "play around with your playstation devices",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p .",
"check": "npm run lint && npm run build && npm run test",
"clean": "rm -rf dist",
"lint": "eslint . --cache --ext .ts",
"prepublishOnly": "npm run check",
"test": "mocha -r ts-node/register 'test/**/*-test.ts'"
},
"keywords": [
"playstation",
"ps4",
"ps5",
"wake",
"wol",
"remote"
],
"bin": {
"playactor": "./dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhleong/playactor.git"
},
"author": "Daniel Leong",
"license": "ISC",
"bugs": {
"url": "https://github.com/dhleong/playactor/issues"
},
"homepage": "https://github.com/dhleong/playactor#readme",
"devDependencies": {
"@sinonjs/fake-timers": "^7.0.5",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-subset": "^1.3.3",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node-rsa": "^1.1.0",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.4.0",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"ts-node": "^9.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"chalk": "^4.1.1",
"clime": "^0.5.14",
"debug": "^4.2.0",
"fs-extra": "^9.1.0",
"got": "^11.8.2",
"ix": "^4.3.1",
"node-rsa": "^1.1.1",
"open": "^8.0.8"
}
}