-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "udmx-artnet-bridge",
"version": "1.0.0",
"description": "A bridge from an uDMX dongle to an Artnet Universe.",
"bin": "bin/udmx-artnet-bridge",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register 'src/*.spec.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxjoehnk/node-udmx-artnet-bridge.git"
},
"keywords": [
"artnet",
"udmx"
],
"author": "Max Jöhnk <maxjoehnk@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/maxjoehnk/node-udmx-artnet-bridge/issues"
},
"homepage": "https://github.com/maxjoehnk/node-udmx-artnet-bridge#readme",
"dependencies": {
"artnet-node": "github:mauriciomassaia/artnet-node",
"debug": "^3.1.0",
"fs-extra": "^5.0.0",
"js-yaml": "^3.11.0",
"toml": "^2.3.3",
"udmx": "^0.1.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/fs-extra": "^5.0.2",
"@types/js-yaml": "^3.11.1",
"@types/mocha": "^5.0.0",
"@types/mockery": "^1.4.29",
"@types/sinon": "^4.3.1",
"@types/sinon-chai": "^2.7.29",
"@types/yargs": "^11.0.0",
"chai": "^4.1.2",
"mocha": "^5.1.0",
"mockery": "^2.1.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"ts-node": "^6.0.0",
"typescript": "^2.8.1"
}
}