-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "blync-node-ts",
"version": "0.0.0-development",
"description": "Embrava Blynclight NodeJS SDK (with TypeScript Support).",
"keywords": [
"embrava",
"blynclight",
"sdk"
],
"homepage": "https://github.com/xadamxk/blync-node-ts#readme",
"bugs": {
"url": "https://github.com/xadamxk/blync-node-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xadamxk/blync-node-ts.git"
},
"license": "MIT",
"author": "xadamxk",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "node tools/cleanup",
"postinstall": "husky install",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"run": "npm run build && npm run run:example",
"run:example": "node examples/index.js",
"test": "jest --no-cache --runInBand",
"watch": "webpack",
"semantic-release": "semantic-release"
},
"dependencies": {
"node-hid": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.23",
"@types/node-hid": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"engines": {
"node": "^14.19.0",
"npm": "6.14.16"
},
"os": [
"win32",
"linux"
],
"publishConfig": {
"access": "public"
}
}