-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "sony-tv-http-control",
"version": "1.0.0",
"description": "Controls a Sony Android powered TV over HTTP",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "rm -rf dist/* && babel src -d dist --source-maps",
"eslint": "eslint src/**/* cli/**/* test/**/*",
"prepublish": "npm run eslint && npm test && npm run build",
"cli": "npx babel-node cli/index.js"
},
"jest": {
"testRegex": "/test/unit/(.*)\\.js[x]?",
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js",
"!src/utils/units.js",
"!src/utils/sony-tv-request-payload.js",
"!src/sony-tv-commands.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/manta-software/sony-tv-http-control"
},
"author": "Cuong Luu",
"license": "MIT",
"dependencies": {
"request": "^2.79.0",
"node-ssdp": "^3.2.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"chalk": "^2.1.0",
"clear": "0.0.1",
"clui": "^0.3.6",
"commander": "^2.11.0",
"eslint": "^4.11.0",
"eslint-config-google": "^0.9.1",
"figlet": "^1.2.0",
"fs": "0.0.1-security",
"inquirer": "^3.2.3",
"jest": "^22.1.4",
"minimist": "^1.2.0",
"nock": "^9.0.14",
"regenerator-runtime": "^0.11.1"
}
}