-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "@tfaster/node-stiebel-isg-parser",
"version": "1.0.0-alpha.4",
"description": "Parser for the Stiebel Eltron ISG web interface written in typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib/**/*"],
"scripts": {
"setup": "npm ci",
"build": "rimraf lib && tsc",
"test": "jest",
"test-watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"link": "npm run build && cd lib && npm link",
"prepare" : "npm run build",
"prepublishOnly" : "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tFaster/node-stiebel-isg-parser.git"
},
"keywords": [
"stiebel",
"isg"
],
"author": "Timo Schneller",
"license": "MIT",
"bugs": {
"url": "https://github.com/tFaster/node-stiebel-isg-parser/issues"
},
"homepage": "https://github.com/tFaster/node-stiebel-isg-parser#readme",
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.8.2"
},
"dependencies": {
"node-html-parser": "^1.4.9"
}
}