-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "ps4-waker",
"description": "Wake your PS4 over LAN (and more!) with help from the Playstation App",
"version": "1.5.1",
"author": "Daniel Leong",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel lib -d dist",
"dev": "babel lib -d dist -w",
"lint": "eslint lib",
"prepublish": "npm run build",
"test": "mocha --compilers js:@babel/register test test/"
},
"repository": {
"type": "git",
"url": "http://github.com/dhleong/ps4-waker"
},
"keywords": [
"ps4",
"wake",
"wol"
],
"bin": {
"ps4-waker": "./bin/cmd.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.0.0",
"minimist": "^1.2.0",
"node-rsa": "^0.4.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-google": "^0.11.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
}
}