forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ldnode",
"description": "Linked Data Platform",
"version": "0.2.11",
"author": {
"name": "Tim Berners-Lee",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Nicola Greco",
"email": "[email protected]"
},
{
"name": "Martin Martinez Rivera",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/linkeddata/ldnode"
},
"homepage": "http://github.com/linkeddata/ldnode",
"bugs": "http://github.com/linkeddata/ldnode/issues",
"dependencies": {
"acl": "^0.4.7",
"async": "^1.3.0",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "^4.13.1",
"express-session": "^1.11.3",
"express-ws": "^0.2.6",
"fs-extra": "^0.21.0",
"glob": "^5.0.13",
"http-delayed-response": "0.0.4",
"jsonld": "^0.3.22",
"li": "^1.0.1",
"mime": "^1.3.4",
"n3": "^0.4.3",
"negotiator": "^0.5.3",
"node-regexp": "^0.1.1",
"node-uuid": "^1.4.3",
"nomnom": "^1.8.1",
"raw-body": "^2.1.2",
"rdflib": "^0.2.8",
"redis": "^0.12.1",
"request": "^2.58.0",
"response-time": "^2.3.1",
"string": "^3.3.0",
"webid": "^0.2.4"
},
"devDependencies": {
"chai": "^3.0.0",
"mocha": "^2.2.5",
"nock": "^2.10.0",
"supertest": "^1.0.1"
},
"main": "index.js",
"scripts": {
"start": "node ./bin/ldnode.js",
"test": "./node_modules/mocha/bin/mocha ./test/*.js",
"test-debug": "DEBUG='ldnode:*' ./node_modules/mocha/bin/mocha ./test/*.js",
"test-acl": "./node_modules/mocha/bin/mocha ./test/acl.js",
"test-params": "./node_modules/mocha/bin/mocha ./test/params.js",
"test-http": "./node_modules/mocha/bin/mocha ./test/http.js",
"test-formats": "./node_modules/mocha/bin/mocha ./test/formats.js",
"test-errors": "./node_modules/mocha/bin/mocha ./test/errors.js",
"ldp-webid": "node ./bin/ldnode.js --webid --cert ./test/keys/cert.pem --key ./test/keys/key.pem -v -r ./test/resources",
"ldp-ssl": "node ./bin/ldnode.js --cert ./test/keys/cert.pem --key ./test/keys/key.pem -v -r ./test/resources"
},
"bin": {
"ldnode": "./bin/ldnode.js"
}
}