-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.79 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
45
46
47
48
49
50
51
52
{
"name": "wrtc-ice-cand-parse",
"version": "0.0.11",
"description": "WRTC Ice Candidate parse",
"main": "index.js",
"scripts": {
"_test": "echo \"Error: no test specified\" && exit 0",
"__test": "echo \"Error: no test specified\" && exit 1",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"_commit": "git commit -am \"commit by 'npm run commit'\"",
"_push": "git push --follow-tags",
"commit-and-push": "npm run _commit && npm test && npm run _push",
"_patch-release": "npm version patch && npm publish",
"_minor-release": "npm version minor && npm publish",
"_major-release": "npm version major && npm publish",
"patch-release": "npm test && npm run _patch-release && npm run _push",
"minor-release": "npm test && npm run _minor-release && npm run _push",
"__major-release": "npm test && npm run _major-release && npm run _push",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alykoshin/wrtc-ice-cand-parse.git"
},
"keywords": [
"wrtc",
"WebRTC",
"ice",
"candidate",
"TURN",
"STUN",
"parse"
],
"author": "Alexander Lykoshin <alykoshin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alykoshin/wrtc-ice-cand-parse/issues"
},
"homepage": "https://github.com/alykoshin/wrtc-ice-cand-parse",
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"mockery": "^1.4.0"
},
"dependencies": {
"mini-debug": "0.0.3",
"mini-enum": "0.0.7"
}
}