generated from jmendiara/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.76 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
60
61
{
"name": "shelly-driver",
"version": "0.1.3",
"description": "Allterco Shelly devices driver",
"author": "Javier Mendiara Cañardo <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "node lib/index.js",
"clean": "rm -fR lib && rm -fR *.tsbuildinfo",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"watch": "NODE_ENV=development DEBUG=shelly:* tsc-watch --build tsconfig.json --onSuccess 'node ./lib/examples/temp.js'",
"lint": "eslint .",
"test": "jest --coverage --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"format": "prettier --write '{src,__tests__}/**/*.{js,ts,md}'",
"preversion": "npm test && npm run lint",
"version": "npm run build",
"postversion": "git push --follow-tags && npm publish"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"bin": {
"boilerplate": "bin/boilerplate"
},
"devDependencies": {
"@types/bonjour": "^3.5.8",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.2",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"tsc-watch": "^4.2.9",
"tsutils": "^3.17.0",
"typescript": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.0",
"axios-debug-log": "^0.8.2",
"bonjour": "^3.5.0",
"coiot-coap": "^1.0.0",
"debug": "^4.3.1",
"lodash": "^4.17.20",
"lru-pcache": "^1.1.1",
"oropel": "^0.1.2",
"qs": "^6.9.4",
"rxjs": "^6.6.3"
}
}