-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
90 lines (90 loc) · 2.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vis-graph3d",
"version": "0.0.0-no-version",
"description": "Create interactive, animated 3d graphs. Surfaces, lines, dots and block styling out of the box.",
"browser": "peer/umd/vis-graph3d.min.js",
"jsnext": "esnext/esm/vis-graph3d.js",
"main": "peer/umd/vis-graph3d.js",
"module": "peer/esm/vis-graph3d.js",
"types": "declarations/index.d.ts",
"homepage": "https://visjs.github.io/vis-graph3d/",
"license": "(Apache-2.0 OR MIT)",
"repository": {
"type": "git",
"url": "https://github.com/visjs/vis-graph3d.git"
},
"bugs": {
"url": "https://github.com/visjs/vis-graph3d/issues"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
},
"keywords": [
"vis",
"visualization",
"web based",
"browser based",
"javascript",
"chart",
"graph",
"browser"
],
"files": [
"HISTORY.md",
"declarations",
"dist",
"esnext",
"peer",
"standalone",
"styles"
],
"scripts": {
"test": "BABEL_ENV=test mocha --exit",
"test-cov": "BABEL_ENV=test-cov nyc --reporter=lcov mocha --exit",
"js:graph3d": "rollup --bundleConfigAsCjs --config rollup.build.js && rollup --bundleConfigAsCjs --config rollup.config.js",
"build": "npm run js:graph3d",
"watch": "rollup --bundleConfigAsCjs --watch --config rollup.config.js",
"watch-dev": "npm run watch-dev",
"generate-examples-index": "generate-examples-index --config generate-examples-index.json",
"style": "prettier --check .",
"style-fix": "prettier --write .",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"clean": "rimraf --glob \"{dist,esnext,peer,standalone}/*\"",
"prepublishOnly": "npm run contributors:update && npm run build",
"contributors:update": "git-authors-cli",
"prepare": "husky install"
},
"peerDependencies": {
"@egjs/hammerjs": "^2.0.0",
"component-emitter": "^1.3.0 || ^2.0.0",
"keycharm": "^0.2.0 || ^0.3.0 || ^0.4.0",
"uuid": "^3.4.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"vis-data": "^6.3.0 || ^7.0.0",
"vis-util": "^5.0.1"
},
"devDependencies": {
"@egjs/hammerjs": "2.0.17",
"component-emitter": "2.0.0",
"eslint": "8.57.1",
"git-authors-cli": "1.0.52",
"husky": "8.0.3",
"jsdom": "23.2.0",
"jsdom-global": "3.0.2",
"keycharm": "0.4.0",
"lint-staged": "15.2.10",
"mocha": "10.8.2",
"nyc": "15.1.0",
"postcss": "8.4.47",
"rimraf": "5.0.10",
"semantic-release": "22.0.12",
"sinon": "17.0.2",
"snap-shot-it": "7.9.10",
"test-console": "2.0.0",
"uuid": "9.0.1",
"vis-data": "7.1.9",
"vis-dev-utils": "4.0.45",
"vis-util": "5.0.7"
}
}