-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "@nabucasa/thingtalk-hass-generator",
"version": "0.0.9",
"description": "Generate Home Assistant automations with thingtalk",
"main": "./dist/index.js",
"module": "./dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"demo": "node ./dist/demo",
"lint": "./node_modules/tslint/bin/tslint -p src/",
"test": "node_modules/.bin/ts-mocha -p test/tsconfig.test.json --opts test/mocha.opts",
"update-tt": "curl https://thingpedia.stanford.edu/thingpedia/api/v3/snapshot/-1 -othingpedia.tt"
},
"author": "Nabu Casa",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.21.1",
"js-yaml": "^3.13.1",
"thingpedia": "^2.6.0",
"thingtalk": "^1.9.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.5",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"prettier": "^1.19.1",
"ts-mocha": "^6.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.2"
}
}