-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
32 lines (32 loc) · 837 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
{
"name": "buzz-buzzers",
"version": "1.0.3",
"main": "src/index.js",
"scripts": {
"dev": "node examples/simple",
"test": "ava test",
"test:coverage": "nyc ava test",
"test:watch": "ava test --watch",
"pretty": "prettier --single-quote --tab-width 4 --write \"{src,test,examples}/**/*.js\"",
"lint": "eslint ."
},
"author": "Andreas",
"dependencies": {
"node-hid": "0.7.6"
},
"devDependencies": {
"ava": "1.0.1",
"eslint": "5.12.0",
"prettier": "1.15.3",
"sinon": "7.2.2"
},
"description": "Simple access to buzz buzzers",
"repository": {
"type": "git",
"url": "git+https://github.com/functino/buzz-buzzers.git"
},
"bugs": {
"url": "https://github.com/functino/buzz-buzzers/issues"
},
"homepage": "https://github.com/functino/buzz-buzzers#readme"
}