forked from LinkedDataFragments/Server.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.07 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": "ldf-server",
"description": "Linked Data Fragments Server",
"version": "2.1.0",
"license": "MIT",
"engines": {
"node": ">=4.0"
},
"bin": {
"ldf-server": "./bin/ldf-server"
},
"main": "module.js",
"repository": {
"type": "git",
"url": "[email protected]:LinkedDataFragments/Server.js.git"
},
"bugs": {
"url": "https://github.com/LinkedDataFragments/Server.js/issues"
},
"scripts": {
"test": "mocha",
"lint": "eslint bin/* lib test"
},
"dependencies": {
"qejs": "^3.0.5",
"q": "^1.4.1",
"n3": "^0.5.0",
"jsonld": "^0.4.11",
"request": "^2.72.0",
"mime": "^1.3.4",
"negotiate": "^1.0.1",
"lodash": "^2.4.2",
"lru-cache": "^4.0.1",
"uritemplate": "^0.3.4"
},
"optionalDependencies": {
"hdt": "^1.3.0",
"access-log": "^0.3.9"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.0.1",
"mocha": "^2.5.3",
"pre-commit": "^1.1.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0"
},
"pre-commit": [
"lint",
"test"
]
}