forked from mdaines/viz-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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": "viz.js",
"version": "2.1.2",
"description": "A hack to put Graphviz on the web.",
"main": "viz.js",
"module": "viz.es.js",
"repository": {
"type": "git",
"url": "https://github.com/mdaines/viz.js.git"
},
"keywords": [
"graphviz",
"emscripten"
],
"files": [
"viz.js",
"viz.es.js",
"full.render.js",
"lite.render.js"
],
"browser": {
"fs": false,
"path": false,
"crypto": false
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 1 Safari versions",
"last 1 ios_saf versions"
],
"scripts": {
"test": "mocha test-node"
},
"author": "Mike Daines <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdaines/viz.js/issues"
},
"homepage": "https://github.com/mdaines/viz.js",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.3.1",
"bluebird": "^3.5.1",
"minimist": "^1.2.0",
"mocha": "^5.1.1",
"rollup": "^1.1.1",
"rollup-plugin-babel": "^4.3.2",
"selenium-webdriver": "^3.6.0",
"tiny-worker": "^2.1.2"
}
}