forked from visjs-community/visjs-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.43 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
{
"name": "visjs-network",
"version": "4.24.6",
"description": "A dynamic, browser-based network visualization library.",
"homepage": "http://visjs.org/",
"license": "(Apache-2.0 OR MIT)",
"repository": {
"type": "git",
"url": "git://github.com/visjs-community/visjs-network.git"
},
"bugs": {
"url": "https://github.com/visjs-community/visjs-network/issues"
},
"keywords": [
"vis",
"visualization",
"web based",
"browser based",
"javascript",
"chart",
"linechart",
"timeline",
"graph",
"network",
"browser"
],
"main": "./dist/vis.js",
"scripts": {
"build": "gulp",
"examples": "yarn build && live-server --open=examples/",
"format": "prettier --config .prettierrc.json --write '{lib,test,examples}/**/*.js'",
"format:check": "prettier --config .prettierrc.json --debug-check --list-different '{lib,test,examples}/**/*.js'",
"lint": "eslint '{lib,examples}/**/*.js'",
"lint:fix": "eslint '{lib,examples}/**/*.js' --fix",
"prepublishOnly": "yarn build",
"test": "mocha --compilers js:babel-core/register",
"test-cov": "nyc --reporter=lcov mocha --compilers js:babel-core/register",
"watch": "gulp watch",
"watch-dev": "gulp watch --bundle"
},
"dependencies": {
"emitter-component": "^1.1.1",
"hammerjs": "^2.0.8",
"keycharm": "^0.2.0",
"moment": "^2.20.1",
"propagating-hammerjs": "^1.4.6",
"timsort": "^0.3.0"
},
"devDependencies": {
"async": "^2.5.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.23.0",
"babelify": "^7.3.0",
"clean-css": "^4.1.7",
"eslint": "^4.3.0",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.7.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.8",
"jsdoc": "^3.5.5",
"jsdom": "11.3.0",
"jsdom-global": "^3.0.2",
"live-server": "^1.2.1",
"merge-stream": "^1.0.1",
"mocha": "^3.4.2",
"nyc": "^11.2.1",
"prettier": "1.14.2",
"rimraf": "^2.6.1",
"sinon": "^4.0.1",
"test-console": "^1.0.0",
"uglify-js": "^2.8.29",
"uuid": "^3.1.0",
"webpack": "^3.3.0",
"yargs": "^8.0.2"
}
}