-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "ps4-waker",
"description": "Wake your PS4 over LAN (and more!) with help from the Playstation App",
"version": "1.10.1",
"author": "Daniel Leong",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel lib -d dist",
"check": "npm run lint && npm run build && npm run test",
"dev": "babel lib -d dist -w",
"lint": "eslint lib",
"prepare": "npm run build",
"test": "mocha --require @babel/register test test/**"
},
"repository": {
"type": "git",
"url": "http://github.com/dhleong/ps4-waker"
},
"keywords": [
"ps4",
"wake",
"wol"
],
"bin": {
"ps4-waker": "./dist/cli.js"
},
"bugs": {
"url": "https://github.com/dhleong/ps4-waker/issues"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"preferGlobal": true,
"homepage": "https://github.com/dhleong/ps4-waker",
"dependencies": {
"@babel/polyfill": "^7.10.4",
"core-js": "^3.6.5",
"debug": "^4.1.1",
"minimist": "^1.2.5",
"node-rsa": "^0.4.2"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^6.2.3"
}
}