-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "post-receive",
"version": "2.1.1",
"description": "The scripts we use to get stuff in the right place on the server.",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"nodemailer": "^2.0.0",
"string-format": "^2.0.0",
"minimist": "~1.2.8"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.1",
"istanbul": "~0.4.2",
"jshint": "~2.11.0",
"rimraf": "~3.0.0",
"tap-spec": "~5.0.0",
"tape": "~4.13.2"
},
"bin": {
"post-receive": "./bin/post-receive"
},
"scripts": {
"start": "./bin/post-receive",
"clean": "rimraf tests/output tests/fixtures/processing",
"test": "npm run clean && tape tests/*.js | tap-spec",
"cover": "npm run clean && istanbul cover tape tests/*.js",
"travis": "npm run cover && codeclimate-test-reporter < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsapi/post-receive.git"
},
"bugs": {
"url": "https://github.com/itsapi/post-receive/issues"
},
"homepage": "https://github.com/itsapi/post-receive#readme",
"contributors": [
"Geraint White <mail@geraintwhite.co.uk>",
"Oliver Faircliff <mail@oliverfaircliff.com>"
],
"license": "GPL-2.0",
"author": "Dvbris <mail@dvbris.com>"
}