-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "gateway-addon",
"version": "1.2.0-alpha.1",
"description": "Bindings for WebThings Gateway add-ons",
"scripts": {
"build": "if [ ! -d schema/messages ]; then git submodule init; fi; git submodule update && node generate-version.js && node generate-types.js && tsc -p .",
"lint": "eslint src --ext .ts",
"prettier": "npx prettier -w '*.js' 'src/*.ts'"
},
"main": "lib/index.js",
"keywords": [
"webthings"
],
"homepage": "https://github.com/WebThingsIO/gateway-addon-node",
"author": "WebThingsIO",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/WebThingsIO/gateway-addon-node.git"
},
"bugs": {
"url": "https://github.com/WebThingsIO/gateway-addon-node/issues"
},
"dependencies": {
"ajv": "^7.0.4",
"sqlite3": "^5.0.1",
"ws": "^7.4.3"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/sqlite3": "^3.1.7",
"@types/ws": "^7.4.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"json-schema-to-typescript": "^10.1.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"files": [
"LICENSE",
"lib",
"schema",
"src"
]
}