-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.26 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
{
"name": "dmx-ts",
"version": "0.4.0",
"author": "Sebastian Wiedenroth <[email protected]>",
"description": "A nodejs DMX library",
"url": "https://github.com/node-dmx/dmx-ts",
"main": "dist/src/index.js",
"scripts": {
"test": "npm run jest",
"lint": "npx eslint . -c .eslintrc --ext .ts",
"jest": "jest",
"build": "tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/node-dmx/dmx-ts.git"
},
"files": [
"dist"
],
"keywords": [
"DMX",
"light control",
"typescript"
],
"dependencies": {
"dmxnet": "^0.9.0",
"sacn": "^4.4.0",
"serialport": "^12.0.0",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"lcov",
"text"
],
"roots": [
"dist/"
],
"testEnvironment": "node"
}
}