-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "dnssd",
"version": "0.4.1",
"description": "Bonjour/Avahi-like service discovery in pure JavaScript",
"keywords": [
"bonjour",
"avahi",
"mdns",
"zeroconf"
],
"author": "Sterling DeMille <[email protected]>",
"license": "MIT",
"repository": "https://github.com/DeMille/dnssd.js",
"main": "index.js",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"lodash": "^4.5.0",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.3.0",
"rewire": "^2.5.1",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"scripts": {
"build": "babel ./src -d ./lib && babel ./bin/bin.js -o ./bin/bin.build.js",
"test": "mocha ./test/test_src.js",
"test:build": "npm run build && mocha --require babel-register ./test/test_lib.js",
"sanity": "mocha --require babel-register ./test/sanity.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/test_src.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"bin": {
"dnssd-js": "./bin/bin.js"
}
}