forked from pirati-cz/gapi-sparql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name" : "gapi-sparql",
"version" : "0.0.1",
"description" : "Open Graph API SPARQL component",
"keywords" : [ "pirate", "party", "graph", "api", "linked data", "sparql", "rest", "bigdata" ],
"author" : {
"name" : "Pirate Party Czech Republic",
"email" : "[email protected]"
},
"license" : "Public domain",
"main" : "./bin/gapi_sparql.js",
"repository" : {
"type" : "git",
"url" : "https://github.com/pirati-cz/gapi-sparql.git"
},
"bugs": {
"url": "http://github.com/pirati-cz/gapi-sparql/issues"
},
"bin" : {
"gapi-sparql" : "./bin/gapi_sparql.js"
},
"scripts" : {
"start": "node ./bin/gapi_sparql.js",
"prepublish" : "gulp",
"test" : "gulp tests"
},
"dependencies" : {
"restify" : "2.8.3",
"winston" : "0.8.3",
"yargs" : "1.3.3",
"rdfstore": "0.8.2",
"sparqljs": "1.0.4"
},
"devDependencies" : {
"async" : "0.9.0",
"coffee-script" : "1.8.0",
"gulp" : "3.8.10",
"mocha" : "2.0.1",
"gulp-coffee" : "2.2.0",
"gulp-docco" : "0.0.4",
"gulp-mocha": "2.0.0",
"gulp-istanbul": "0.4.0",
"should" : "4.3.0",
"codeclimate-test-reporter": "0.0.4",
"coveralls": "2.11.2"
}
}