forked from visjs/vis-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
164 lines (164 loc) · 5.89 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "vis-network",
"version": "0.0.0-no-version",
"description": "A dynamic, browser-based visualization library.",
"homepage": "https://visjs.github.io/vis-network/",
"license": "(Apache-2.0 OR MIT)",
"repository": {
"type": "git",
"url": "https://github.com/visjs/vis-network.git"
},
"bugs": {
"url": "https://github.com/visjs/vis-network/issues"
},
"keywords": [
"vis",
"visualization",
"web based",
"browser based",
"typescript",
"javascript",
"chart",
"graph",
"network",
"browser"
],
"browser": "peer/umd/vis-network.min.js",
"jsnext": "esnext/esm/vis-network.js",
"main": "peer/umd/vis-network.js",
"module": "peer/esm/vis-network.js",
"types": "declarations/index.d.ts",
"files": [
"LICENSE*",
"declarations",
"dist",
"esnext",
"peer",
"standalone",
"styles"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
},
"scripts": {
"serve": "serve -l tcp://localhost:58253",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "npm run test:e2e:headless",
"test:e2e:gui": "npm run test:e2e:gui:transpile; start-server-and-test test:e2e:gui:transpile-watch-and-serve http://localhost:58253 test:e2e:gui:test",
"test:e2e:gui:serve": "npm run serve",
"test:e2e:gui:test": "cypress open",
"test:e2e:gui:transpile": "tsc --project cypress",
"test:e2e:gui:transpile-and-watch": "npm run test:e2e:gui:transpile -- --watch",
"test:e2e:gui:transpile-watch-and-serve": "start-server-and-test test:e2e:gui:serve http://localhost:58253 test:e2e:gui:transpile-and-watch",
"test:e2e:headless": "start-server-and-test test:e2e:headless:serve http://localhost:58253 test:e2e:headless:transpile-and-test",
"test:e2e:headless:serve": "npm run serve",
"test:e2e:headless:test": "cypress run",
"test:e2e:headless:transpile": "tsc --project cypress",
"test:e2e:headless:transpile-and-test": "npm run test:e2e:headless:transpile && npm run test:e2e:headless:test",
"test:unit": "BABEL_ENV=test-cov nyc mocha --exit",
"build": "npm run build:declarations && npm run build:code && npm run build:legacy:types && npm run build:legacy:code && npm run build:legacy:images",
"build:legacy:types": "cpy --parents \"types/**/*\" dist && tsc -p tsconfig.types.json",
"build:legacy:code": "rollup --config rollup.config.js",
"build:legacy:images": "cpy \"lib/assets/*\" dist/img/network",
"build:declarations": "cpy --cwd=types --parents \"**/*\" ../declarations && tsc -p tsconfig.declarations.json",
"build:code": "rollup --config rollup.build.js",
"build:watch": "rollup --watch --config rollup.build.js",
"prepublishOnly": "npm run build",
"generate-examples-index": "generate-examples-index --config generate-examples-index.json",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "eslint '{lib,test}/**/*.js'",
"lint:ts": "eslint '{cypress,lib,test}/**/*.ts'",
"clean": "rimraf \"declarations\" \"dist\" \"examples/index.html\" \"examples/thumbnails\" \"peer\" \"standalone\" \"styles\" \"vis-network*\" \"cypress/{fixtures,integration,pages,support}/**/*.js{,.map}\"",
"postinstall": "opencollective postinstall || exit 0"
},
"config": {
"snap-shot-it": {
"sortSnapshots": true,
"useRelativePath": true
}
},
"peerDependencies": {
"@egjs/hammerjs": "^2.0.0",
"component-emitter": "^1.3.0",
"keycharm": "^0.2.0 || ^0.3.0",
"moment": "^2.24.0",
"timsort": "^0.3.0",
"uuid": "^3.4.0 || ^7.0.0",
"vis-data": "^6.2.1",
"vis-util": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-typescript": "7.9.0",
"@babel/register": "7.9.0",
"@babel/runtime-corejs3": "7.9.6",
"@egjs/hammerjs": "2.0.17",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-image": "2.0.4",
"@rollup/plugin-json": "4.0.3",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-strip": "1.3.2",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/github": "7.0.5",
"@semantic-release/npm": "7.0.5",
"@semantic-release/release-notes-generator": "9.0.1",
"@types/chai": "4.2.11",
"@types/mocha": "7.0.2",
"@types/sinon": "9.0.0",
"@types/timsort": "0.3.0",
"@types/uuid": "7.0.3",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"babel-plugin-css-modules-transform": "1.6.2",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.2.0",
"component-emitter": "1.3.0",
"core-js": "3.6.5",
"cpy-cli": "3.1.1",
"cypress": "4.5.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-prettier": "3.1.3",
"gh-pages": "2.2.0",
"jsdoc": "3.6.4",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"keycharm": "0.3.1",
"mocha": "7.1.2",
"moment": "2.24.0",
"nyc": "15.0.1",
"opencollective": "1.0.3",
"postcss-assets": "5.0.0",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"rollup": "2.8.2",
"rollup-plugin-analyzer": "3.2.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-postcss": "3.1.1",
"rollup-plugin-terser": "5.3.0",
"rollup-plugin-typescript2": "0.27.0",
"semantic-release": "17.0.7",
"serve": "11.3.0",
"sinon": "9.0.2",
"snap-shot-it": "7.9.3",
"start-server-and-test": "1.11.0",
"timsort": "0.3.0",
"typescript": "3.8.3",
"uuid": "7.0.3",
"vis-data": "6.5.1",
"vis-dev-utils": "2.2.6",
"vis-util": "4.0.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
}
}