-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "freeathome-local-api-client",
"version": "1.4.9",
"preview": true,
"description": "A client library for the BUSCH-JAEGER free@home local API implemented in TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/pgerke/freeathome-local-api-client.git"
},
"keywords": [
"free@home",
"freeathome",
"buschjaeger",
"busch-jaeger",
"abb",
"smarthome",
"api-client",
"typescript"
],
"author": {
"email": "[email protected]",
"name": "Philip Gerke",
"url": "https://www.philipgerke.com"
},
"homepage": "https://github.com/pgerke/freeathome-local-api-client#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgerke/freeathome-local-api-client/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build:esm": "webpack --mode=production --config webpack.esm.config.js",
"build:cjs": "webpack --mode=production --config webpack.cjs.config.js",
"build": "npm run clean && npm run build:esm && npm run build:cjs && node ./fixup.js",
"test": "ts-node --project ./tsconfig.spec.json node_modules/jasmine/bin/jasmine --config=jasmine.json",
"test:ci": "nyc npm run test",
"lint": "eslint . --fix --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"rxjs": "^7.8.1",
"ts-interface-checker": "^1.0.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jasmine": "^5.1.4",
"@types/webpack": "^5.28.5",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"jasmine": "^5.2.0",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-interface-builder": "^0.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}