-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 841 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 841 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
{
"name": "netvis-server",
"version": "1.0.0",
"description": "A simple Node.js application for a NetVis based frontend together with some sample data to provide an example for a quick start for own implementations",
"main": "index.js",
"scripts": {
"start-dev": "forever --watch --watchDirectory . index.js",
"start": "node index.js",
"test": "eslint *.js"
},
"keywords": [
"netvis",
"network",
"visualization",
"d3js"
],
"author": "joachimschirrmacher@gmail.com",
"repository": "https://github.com/jschirrmacher/netvis-server.git",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"js-netvis": "^5.8.2",
"js-ws-updater": "^1.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"forever": "^1.0.0"
}
}