-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "onkyo.js",
"description": "Onkyo receiver remote control",
"keywords": [
"Onkyo",
"Pioneer",
"remote",
"Amplifier"
],
"version": "0.8.2",
"homepage": "https://github.com/jupe/onkyo.js",
"author": "Jussi Vatjus-Anttila <[email protected]>)",
"main": "./lib",
"bugs": {
"url": "https://github.com/jupe/onkyo.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupe/onkyo.js"
},
"license": "MIT",
"dependencies": {
"ansi-escapes": "^6.1.0",
"bluebird": "^3.7.2",
"debug": "^4.3.4",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"snyk": "^1.1053.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-mocha": "0.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"istanbul": "^0.4.5",
"mocha": "^10.1.0",
"mocha-circleci-reporter": "0.0.3",
"sinon": "^15.0.1"
},
"bin": "./cli.js",
"contributors": [
"Jussi Vatjus-Anttila <[email protected]>"
],
"scripts": {
"test": "MOCHA_FILE=junit/test-results.xml istanbul cover -- _mocha --recursive -R mocha-circleci-reporter",
"lint": "eslint test lib",
"lint-fix": "eslint --fix test lib",
"start": "node lib/cli.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}