-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "@z-bus/api",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src --ext .ts",
"test": "jest",
"link": "cp src/package.json lib/package.json && cd lib && npm link",
"doc": "typedoc",
"build": "npm run clean && npm run lint && tsc && npm run test && npm run doc && npm run link",
"publish": "npm run build && cp src/package.json lib/package.json && cd lib && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/z-bus/api.git"
},
"keywords": [
"Z-Bus",
"smart",
"home",
"automation"
],
"author": "Markus Zimmermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/z-bus/api/issues"
},
"homepage": "https://github.com/z-bus/api#readme",
"devDependencies": {
"@types/jest": "^26.0.18",
"@types/node-schedule": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.28",
"typescript": "^4.1.3"
},
"dependencies": {
"node-schedule": "^2.0.0",
"rxjs": "^6.6.6"
}
}