-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "homey-log",
"version": "2.0.1",
"description": "Interface with Sentry for Homey",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"serve": "concurrently \"serve build/\" \"npm run jsdoc:watch\"",
"build": "npm run jsdoc:clean; npm run jsdoc;",
"jsdoc": "jsdoc --configure ./docs/jsdoc.json;",
"jsdoc:clean": "rm -rf ./build",
"jsdoc:watch": "watch \"npm run jsdoc:clean && npm run jsdoc\" lib docs \"node_modules/homey-jsdoc-template\"",
"typings:generate": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/athombv/node-homey-log.git"
},
"author": "Athom B.V.",
"license": "ISC",
"bugs": {
"url": "https://github.com/athombv/node-homey-log/issues"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/athombv/node-homey-log#readme",
"dependencies": {
"raven": "github:athombv/raven-node"
},
"devDependencies": {
"@types/homey": "npm:homey-apps-sdk-v3-types@^0.3.0",
"@types/node": "^12.20.55",
"concurrently": "^5.1.0",
"eslint": "^7.2.0",
"eslint-config-athom": "^2.1.0",
"homey": "^2.4.0",
"homey-jsdoc-template": "github:athombv/homey-jsdoc-template#1.4",
"jsdoc": "^3.6.6",
"jsdoc-ts-utils": "^1.1.2",
"npm-watch": "^0.6.0",
"serve": "^11.3.1",
"typescript": "^4.7.4",
"watch": "^1.0.2"
},
"types": "types/index.d.ts",
"watch": {
"jsdoc": {
"patterns": [
"lib",
"README.md"
],
"extensions": [
"js"
]
}
}
}