-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 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
{
"name": "visualise-videocontext",
"version": "1.2.3",
"description": "Visualise a videocontext graph",
"main": "dist/visualise-videocontext.bundle.js",
"author": "Ben Robinson",
"license": "BSD-3-Clause",
"scripts": {
"clean": "rimraf dist",
"start": "webpack --watch --mode='development'",
"build": "webpack -p",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": "https://github.com/bbc/visualise-videocontext/",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^8.0.4",
"eslint": "^4.19.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.52.0",
"rimraf": "^2.6.1",
"source-map-loader": "^0.1.6",
"webpack": "^4.28.3",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"cytoscape": "^3.2.16",
"cytoscape-dagre": "^2.2.2"
}
}