-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "coolmaster-client",
"version": "0.0.1-alpha.1",
"description": "CoolMasterNet API Client for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/**/*"],
"repository": {
"type": "git",
"url": "https://github.com/bdsoha/coolmaster-client.git"
},
"bugs": {
"url": "https://github.com/bdsoha/coolmaster-client/issues"
},
"author": "Dov Benyomin Sohacheski <[email protected]>",
"license": "MIT",
"keywords": [
"api-client",
"coolmasternet",
"rest-client",
"smarthome"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"axios": "^1.2.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.31.0",
"eslint-plugin-align-import": "^1.0.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true
}