-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 856 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 856 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
39
{
"name": "app-daemon-js",
"version": "0.0.14",
"description": "",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/adgelbfish/appdaemon-js.git"
},
"scripts": {
"start": "",
"test": "jest",
"dev": "babel-node src/core/app.js",
"build": "babel src --out-dir lib --ignore *.spec.js",
"prepublishOnly": "npm run build"
},
"author": "Avraham David Gelbfish <adg@adgelb.fish>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"validator": "^7.0.0"
},
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"fs-extra": "^3.0.0",
"home-assistant-js-websocket": "^1.1.0",
"ws": "^2.3.1"
},
"bin": {
"appdaemon-js": "./lib/core/app.js"
}
}