-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
{
"name": "thelightingcontrollerclient",
"version": "0.2.0",
"description": "Node.js client library for communicating with The Lighting Controller software products (ShowXpress, QuickDmx, and SweetLight)",
"keywords": [
"lighting",
"showxpress",
"quickdmx",
"sweetlight",
"dmxcontroll",
"thelightingcontroller",
"lightboard",
"theater",
"dj"
],
"main": "./index.js",
"scripts": {
"test": "./node_modules/jasmine/bin/jasmine.js",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover --include-all-sources ./node_modules/jasmine/bin/jasmine.js -x **/scripts/**",
"mock-server": "node ./scripts/mock-server",
"example": "node ./scripts/example"
},
"author": "Aaron Tidwell <aaron.tidwell@gmail.com>",
"license": "MIT",
"repository": "git://github.com/Tidwell/thelightingcontrollerclient.git",
"dependencies": {
"eventemitter2": "^3.0.0",
"utils-merge": "^1.0.0",
"xml2js": "^0.4.17"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jasmine": "^2.5.3",
"mockery": "^2.0.0"
}
}