-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
40 lines (40 loc) · 978 Bytes
/
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
{
"name": "dmxnet",
"version": "0.9.0",
"description": "ArtNet-DMX-sender and receiver for nodejs",
"main": "lib.js",
"types": "lib.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint --ignore-path .gitignore . --max-warnings 0",
"lintfix": "eslint --ignore-path .gitignore --fix .",
"jsdoc": "jsdoc lib.js -d jsdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/margau/dmxnet.git"
},
"keywords": [
"artnet",
"dmx",
"lightning",
"stage"
],
"author": "margau",
"license": "MIT",
"bugs": {
"url": "https://github.com/margau/dmxnet/issues"
},
"homepage": "https://github.com/margau/dmxnet#readme",
"dependencies": {
"jspack": "0.0.4",
"netmask": "^2.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-jsdoc": "^15.12.2",
"eslint-plugin-node": "^10.0.0",
"jsdoc": "^3.6.6"
}
}