forked from dhleong/ps4-waker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "ps4-waker",
"description": "Wake your PS4 over LAN (and more!) with help from the Playstation App",
"version": "1.4.3",
"author": "Daniel Leong",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel lib -d dist",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-core/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": {
"minimist": "^1.2.0",
"node-rsa": "^0.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.4.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.4.1"
}
}