forked from JeroenDeDauw/QueryEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
57 lines (45 loc) · 1.2 KB
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": "wikibase-query-engine",
"description": "JavaScript query interface to a collection of Wikibase entities",
"version": "0.0.1",
"homepage": "https://github.com/JeroenDeDauw/QueryEngine",
"bugs": "https://github.com/JeroenDeDauw/QueryEngine/issues",
"author": "Jeroen De Dauw",
"maintainers": ["Jeroen De Dauw <jeroendedauw@gmail.com> (http://bn2vs.com)"],
"keywords": [
"ask",
"Wikidata",
"Semantic MediaWiki",
"Wikibase"
],
"licenses": [
{
"type": "MPL v2+",
"url": "https://github.com/JeroenDeDauw/QueryEngine/blob/master/COPYING"
}
],
"repository": {
"type": "git",
"url": "https://github.com/JeroenDeDauw/QueryEngine.git"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "0.1.9",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-jshint": "~0.6.3",
"grunt-contrib-watch": "~0.5.3",
"nodeunit": "~0.8",
"jshint": "2.x",
"extend": "~1.2",
"inherits": "~2.0.1",
"async": "~0.2.9",
"coveralls": "~2",
"jscoverage": "*"
},
"main": "index.js",
"scripts": {
"install": "./node_modules/.bin/grunt install",
"test": "./node_modules/.bin/grunt",
"coveralls": "jscoverage lib && TEST_COV=1 nodeunit --reporter=lcov test | coveralls"
}
}