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