forked from dave-irvine/node-luxafor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1004 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
41
42
43
44
{
"name": "node-luxafor2",
"version": "1.0.4",
"description": "Updated control for Luxafor notification light",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"jshint": "jshint -c .jshintrc --exclude-path .gitignore .",
"readme": "node_modules/jsdoc-to-markdown/bin/cli.js lib/luxafor.js > README.md"
},
"keywords": [
"luxafor",
"usb"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:jonathonball/node-luxafor.git"
},
"bugs": {
"url": "https://github.com/jonathonball/node-luxafor2/issues"
},
"author": "Jonathon Ball <jonathon.ball@gmail.com>",
"contributors": [
{
"name": "Dave Irvine",
"email": "dave@daveirvine.me"
}
],
"license": "MIT",
"dependencies": {
"usb": "^1.1.0"
},
"devDependencies": {
"jsdoc-to-markdown": "^4.0.1",
"jshint": "^2.9.6",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"jshint",
"test"
]
}