-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 944 Bytes
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
{
"name": "magichome-platform",
"version": "0.0.18",
"description": "discover, control, and receive status for magichome devices",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test:watch": "nodemon --config nodemon.test.json --watch src \"src/specs/*.spec.ts\"",
"build:watch": "nodemon --config nodemon.build.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Zacknetic/MagicHome-Platform"
},
"keywords": [
"magichome"
],
"author": "Zachary Avino",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^14.17.33",
"blessed": "^0.1.81",
"chai": "^4.3.7",
"eslint": "^7.21.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"sinon": "^15.0.4",
"ts-mocha": "^10.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.4"
}
}