-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "git2prov",
"version": "0.1.2",
"description": "Unleash the potential of Git in the new W3C standard for provenance.",
"bin": [
"bin/git2prov",
"bin/git2prov-server"
],
"repository": {
"type": "git",
"url": "git://github.com/mmlab/Git2PROV.git"
},
"keywords": [
"git",
"prov",
"provenance"
],
"author": [
"Tom De Nies",
"Sara Magliacane",
"Ruben Verborgh"
],
"license": "GPLv3",
"bugs": {
"url": "https://github.com/mmlab/Git2PROV/issues"
},
"homepage": "http://git2prov.org/",
"dependencies": {
"n3": "~0.2.3",
"http-proxy": "~1.0.2",
"express": "~3.4.8"
},
"devDependencies": {
"istanbul": "0.3.0",
"mocha": "~1.21.4",
"should": "~4.0.0",
"sinon": "~1.10.3",
"jshint": "~2.1.10",
"supertest": "~0.13.0",
"xunit-file": "~0.0.5"
},
"scripts": {
"start": "node ./bin/git2prov-server",
"test": "mocha --require test/support/env --reporter xunit-file -t 5000 --bail --check-leaks test/",
"hint": "./node_modules/jshint/bin/jshint lib test",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -i -g Integration --require test/support/env --reporter spec --check-leaks test/",
"cov-jenkins": "istanbul report cobertura",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -i -g Integration --require test/support/env --reporter spec --check-leaks test/"
}
}