forked from dydra/dydra.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.03 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
{
"name": "dydra",
"version": "0.0.0",
"description": "Dydra Software Development Kit (SDK) for JavaScript",
"keywords": [
"Dydra",
"RDF",
"SPARQL"
],
"homepage": "https://github.com/dydra/dydra.js",
"bugs": "https://github.com/dydra/dydra.js/issues",
"licenses": [
{
"type": "Unlicense",
"url": "http://unlicense.org/UNLICENSE"
}
],
"author": {
"name": "Arto Bendiken",
"email": "[email protected]",
"url": "http://ar.to/"
},
"contributors": [],
"files": [
"src"
],
"main": "src/dydra.js",
"directories": {
"lib": "src",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/dydra/dydra.js.git"
},
"scripts": {
"test": "grunt test --force"
},
"dependencies": {
"jquery": ">=1.9"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-cli": "^0.1.13",
"grunt-contrib-jasmine": "^0.6.3",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1"
},
"engines": {
"node": ">=0.8"
}
}