forked from antoniogarrote/NodeJS-WebID-demo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 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
48
49
50
51
52
53
{
"name": "webid",
"version": "0.1.0",
"description": "WebID module",
"homepage": "https://github.com/magnetik/node-webid",
"keywords": [
"webid",
"w3c",
"foaf"
],
"maintainers": [{
"name": "Baptiste Lafontaine",
"email": "[email protected]",
"url": "http://magnetik.org"
}],
"contributors": [
{
"name": "Baptiste Lafontaine",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/magnetik/node-webid/issues"
},
"licenses": [
{
"type": "MIT"
}
],
"repositories": [
{
"type": "git",
"url": "[email protected]:magnetik/node-webid.git"
}
],
"dependencies": {
"request": ">= 2.9.3",
"underscore": ">= 1.3.0",
"rdfstore": ">= 0.7.0"
},
"devDependencies": {
"coffee-script": ">= 1.6.0"
},
"engines" : {
"node" : ">= 0.8.0"
},
"scripts": {
"pretest": "cake build",
"postinstall": "cake build",
"postupdate": "cake build"
},
"main": "./bin/webid"
}