forked from RubenVerborgh/SPARQL.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.1 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
{
"name": "sparqljs",
"version": "1.1.4",
"description": "A parser for the SPARQL query language",
"author": [
"Ruben Verborgh <[email protected]>"
],
"keywords": [
"sparql",
"rdf",
"query",
"parser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RubenVerborgh/SPARQL.js.git"
},
"bugs": {
"url": "https://github.com/RubenVerborgh/SPARQL.js/issues"
},
"main": "./sparql.js",
"bin": "bin/sparql-to-json",
"scripts": {
"test": "./build;./node_modules/mocha/bin/mocha",
"prepublish": "./build"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"jison": "0.4.x",
"mocha": "1.21.x",
"chai": "1.9.x",
"pre-commit": "~0.0.9"
},
"browser": {
"_process": false,
"fs": false,
"path": false
},
"pre-commit": [
"test"
],
"testling": {
"files": "test/*.js",
"harness": "mocha",
"browsers": [
"ie/9..latest",
"firefox/24..latest",
"chrome/29..latest",
"safari/6..latest",
"iphone/6..latest",
"ipad/6..latest"
]
}
}