forked from hfreire/watch-rtp-play
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "watch-rtp-play",
"description": "Watch and listen RTP Play without a browser",
"version": "0.0.0",
"engines": {
"node": ">= 6.0.0"
},
"author": "Hugo Freire <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hfreire/watch-rtp-play.git"
},
"bugs": {
"url": "https://github.com/hfreire/watch-rtp-play/issues"
},
"homepage": "https://github.com/hfreire/watch-rtp-play#readme",
"dependencies": {
"bluebird": "3.5.1",
"health-checkup": "1.0.18",
"lodash": "4.17.4",
"modern-logger": "1.5.12",
"request-on-steroids": "1.1.18",
"serverful": "1.1.25"
},
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"coveralls": "2.13.3",
"eslint": "4.15.0",
"eslint-config-hfreire": "1.0.11",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"eslint-plugin-unicorn": "3.0.1",
"istanbul": "0.4.5",
"last-release-github": "1.1.1",
"mocha": "4.1.0",
"semantic-release": "7.0.2",
"pre-git": "3.16.0",
"testdouble": "3.2.7"
},
"greenkeeper": {
"ignore": [
"semantic-release"
]
},
"config": {
"pre-git": {
"commit-msg": "conventional",
"allow-untracked-files": true
}
},
"release": {
"getLastRelease": "last-release-github",
"analyzeCommits": "simple-commit-message"
},
"scripts": {
"commit": "./node_modules/.bin/commit-wizard",
"clean": "rm -rf coverage",
"lint": "node_modules/.bin/eslint . --ext .json --ext .js",
"coverage": "node_modules/.bin/istanbul cover --include-all-sources --root src --print detail ./node_modules/mocha/bin/_mocha -- --recursive test",
"test": "npm run lint && npm run coverage",
"semantic-release": "./node_modules/.bin/semantic-release pre && node_modules/.bin/semantic-release post",
"build": "DOCKER_REPO=hfreire NAME=$npm_package_name ./share/docker/hooks/build",
"push": "DOCKER_REPO=hfreire NAME=$npm_package_name ./share/docker/hooks/push",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"start": "node src/app.js"
}
}