-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "homey-oauth2app",
"version": "3.6.0",
"description": "",
"main": "index.js",
"files": [
"/index.js",
"/lib/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"jsdoc": "jsdoc --configure ./jsdoc.json;",
"jsdoc:serve": "serve ./jsdoc",
"jsdoc:clean": "rm -rf ./jsdoc",
"jsdoc:watch": "watch \"npm run jsdoc:clean && npm run jsdoc\" lib docs \"node_modules/@athombv/jsdoc-template\""
},
"config": {
"npmPublishTagProduction": "latest",
"npmPublishTagStaging": "beta"
},
"dependencies": {
"node-fetch": "^2.3.0"
},
"license": "MIT",
"devDependencies": {
"@athombv/jsdoc-template": "^1.6.1",
"@types/jest": "^28.1.1",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-athom": "^2.0.8",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"jsdoc": "^3.6.6",
"jsdoc-ts-utils": "^1.1.2",
"npm-watch": "^0.6.0",
"serve": "^11.3.1",
"watch": "^1.0.2"
},
"watch": {
"jsdoc": {
"patterns": [
"lib",
"README.md"
],
"extensions": [
"js"
]
}
}
}