-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 807 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 807 Bytes
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
{
"name": "linkgedgeodata",
"version": "0.0.1",
"description": "Processes requests to be sent to linkedgeodata.org",
"main": "server.js",
"scripts": {
"test": "./node_modules/.bin/eslint ./",
"start": "node server.js"
},
"repository": {
"type": "git"
},
"keywords": [
"nodejs"
],
"author": "Arnaud S'Jongers",
"license": "ISC",
"eslintConfig": {
"extends": "standard"
},
"devDependencies": {
"eslint": "~4.18.1",
"eslint-config-standard": "~11.0.0",
"eslint-plugin-import": "~2.9.0",
"eslint-plugin-node": "~6.0.1",
"eslint-plugin-promise": "~3.6.0",
"eslint-plugin-standard": "~3.0.1"
},
"dependencies": {
"body-parser": "latest",
"express": "^4.16.3",
"express-http-proxy": "^1.6.0",
"request": "^2.88.0"
}
}