-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 2.13 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
{
"name": "has-node",
"version": "0.4.14",
"description": "Homekit Accessory Server",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && npm run watch",
"serve": "nodemon --ignore 'samples/*.json' -L samples/bridge.js",
"build": "npm run tslint && npm run build-ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --ignore 'samples/*.json' --inspect build/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"clean": "find -E src/ samples/ -regex '.*\\.(js|d.ts)' -delete && (rm index.js || true) && (rm index.d.ts || true)",
"generate-predefined": "tsc ./src/predefinedTypes/generator.ts && node ./src/predefinedTypes/generator.js && npm run build",
"build-publish": "npm run build && npm publish",
"tslint": "tslint -c tslint.json -p tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abedinpour/HAS.git"
},
"keywords": [
"Homekit",
"Accessory",
"Server",
"Apple",
"HAP",
"HAS"
],
"author": "MohammadHossein Abedinpour",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/abedinpour/HAS/issues"
},
"homepage": "https://github.com/abedinpour/HAS#readme",
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.0",
"@types/node": "^8.5.2",
"concurrently": "^3.5.1",
"nodemon": "^1.18.10",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"bonjour": "github:abedinpour/bonjour#refactoring_and_update_txt_support",
"chacha-native": "^2.0.2",
"curve25519-n2": "^1.1.3",
"debug": "^3.1.0",
"ed25519": "0.0.4",
"express": "^4.16.2",
"extended-buffer": "^4.0.5",
"jsbn": "^1.1.0",
"server-destroy": "^1.0.1"
}
}