-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "node-dash-button",
"version": "0.6.1",
"description": "a module for integrating amazon dash button presses into a node project",
"main": "index.js",
"scripts": {
"livetest": "istanbul cover ./node_modules/mocha/bin/_mocha test/test-live.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha test/test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"bin": {
"findbutton": "./bin/findbutton"
},
"repository": {
"type": "git",
"url": "https://github.com/hortinstein/node-dash-button"
},
"keywords": [
"amazon",
"amazon-dash",
"dash",
"button",
"arp"
],
"author": "hortinstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/hortinstein/node-dash-button/issues"
},
"homepage": "https://github.com/hortinstein/node-dash-button",
"dependencies": {
"pcap": "git+https://github.com/mranney/node_pcap.git#d920204745c8b00ef4b7a3fe27d902b263cdb70f",
"underscore": "^1.8.3"
},
"devDependencies": {
"arpjs": "^1.0.0",
"autochecker": "^0.5.1",
"coveralls": "^2.11.4",
"istanbul": "0.3.22",
"mocha": "^2.3.0",
"mockery": "^1.4.0",
"should": "^7.1.0",
"sinon": "^1.17.1"
}
}