-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "km200-api",
"version": "0.2.3",
"description": "A nodejs module for connecting a buderus heater via km200 interface",
"main": "./lib/km200.js",
"types": "./lib/km200.d.ts",
"scripts": {
"start:demo": "nodemon src/example/example.ts",
"test": "jest --config jestconfig.json",
"build": "tsc",
"pack": "npm pack",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags && npm run build && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jenszech/km200-api.git"
},
"keywords": [
"buderus",
"km200",
"npm",
"module"
],
"author": "Jens Zech <[email protected]> (https://github.com/jenszech)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jenszech/km200-api/issues"
},
"files": [
"lib/**/*",
"LICENCE"
],
"homepage": "https://github.com/jenszech/km200-api#readme",
"dependencies": {
"rijndael-js": "^2.0.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^12.12.47",
"@types/node-fetch": "^2.5.7",
"@types/request": "^2.48.5",
"@types/rijndael-js": "^1.0.0",
"expect": "latest",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5",
"jest-fetch-mock": "^3.0.3"
},
"optionalDependencies": {
"fsevents": "^2.1.3"
}
}