-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
66 lines (66 loc) · 1.68 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
62
63
64
65
66
{
"name": "myq-api",
"version": "2.0.4",
"description": "An updated API to interface with myQ devices",
"keywords": [
"myq",
"chamberlain",
"liftmaster",
"garage",
"door",
"light",
"device",
"automation",
"smart",
"home",
"api"
],
"homepage": "https://github.com/thomasmunduchira/myq-api",
"bugs": {
"url": "https://github.com/thomasmunduchira/myq-api/issues"
},
"license": "MIT",
"author": "Thomas Munduchira <[email protected]> (https://thomasmunduchira.com/)",
"main": "src/index.js",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thomasmunduchira/myq-api.git"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore ./",
"fix": "eslint --fix --ignore-path .gitignore ./",
"test": "jest test/unit",
"test:e2e": "jest test/e2e",
"test:coverage": "jest --coverage test/unit",
"test:mutants": "stryker run"
},
"dependencies": {
"axios": "^0.21.1",
"axios-debug-log": "^0.8.0",
"crypto": "^1.0.1",
"debug": "^4.1.1"
},
"devDependencies": {
"@stryker-mutator/core": "^3.3.1",
"@stryker-mutator/javascript-mutator": "^3.3.1",
"@stryker-mutator/jest-runner": "^3.3.1",
"axios-mock-adapter": "^1.18.2",
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsdoc": "^30.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.1",
"prettier": "^2.0.5"
},
"engines": {
"node": ">=10"
}
}