-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
121 lines (121 loc) · 3.67 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
{
"name": "vis-util",
"version": "0.0.0-no-version",
"description": "utilitie collection for visjs",
"browser": "peer/umd/vis-util.min.js",
"jsnext": "esnext/esm/vis-util.js",
"main": "peer/umd/vis-util.js",
"module": "peer/esm/vis-util.js",
"types": "declarations/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/visjs/vis-util.git"
},
"author": "Alex de Mulder <[email protected]>",
"contributors": [
"Alex de Mulder <[email protected]>",
"jos <[email protected]>",
"Tomáš Vyčítal <[email protected]>",
"Alexander Wunschik <[email protected]>",
"wimrijnders <[email protected]>",
"yotamberk <[email protected]>",
"David Anderson <[email protected]>",
"Ludo Stellingwerff <[email protected]>",
"Ben Morton <[email protected]>",
"Greg Kubisa <[email protected]>",
"Kelvin Del Monte <[email protected]>",
"Zuko Mgwili <[email protected]>"
],
"scripts": {
"build": "run-s build:types build:code build:docs",
"build:code": "rollup --bundleConfigAsCjs --config rollup.build.js",
"build:docs": "typedoc",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rimraf --glob \"{coverage,declarations,docs,esnext,peer,reports,standalone}\" \"index.{d.ts,js}\"",
"style": "prettier --check .",
"style-fix": "prettier --write .",
"lint": "eslint --ext .js,.ts .",
"lint-fix": "eslint --fix --ext .js,.ts .",
"prepublishOnly": "npm run build",
"test": "run-s test:unit test:types:check-dts test:types:tsc test:interop",
"test:coverage": "cross-env BABEL_ENV=test-cov nyc mocha",
"test:interop": "node interop.js",
"test:interop:debug": "npm run test:interop -- --fail-command \"$SHELL\"",
"test:types:check-dts": "cd test && check-dts",
"test:types:tsc": "tsc --noemit --project tsconfig.check.json",
"test:unit": "cross-env BABEL_ENV=test mocha",
"type-check": "run-s test:types:*",
"version": "npm run contributors:update && git add package.json",
"contributors:update": "git-authors-cli",
"preparepublish": "npm run contributors:update",
"prepare": "husky install"
},
"lint-staged": {
"*.*": "prettier --write",
"*.{js,ts}": "eslint --fix",
".*.*": "prettier --write",
".*.{js,ts}": "eslint --fix"
},
"config": {
"snap-shot-it": {
"sortSnapshots": true,
"useRelativePath": true
}
},
"engines": {
"node": ">=8"
},
"keywords": [
"util",
"vis",
"vis.js"
],
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/visjs/vis-util/issues"
},
"homepage": "https://github.com/visjs/vis-util",
"files": [
"LICENSE*",
"standalone",
"peer",
"esnext",
"declarations"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
},
"peerDependencies": {
"@egjs/hammerjs": "^2.0.0",
"component-emitter": "^1.3.0 || ^2.0.0"
},
"devDependencies": {
"@egjs/hammerjs": "2.0.17",
"@types/chai": "4.3.11",
"@types/jsdom-global": "^3.0.4",
"@types/mocha": "10.0.6",
"@types/node": "20.10.3",
"@types/sinon": "17.0.2",
"assert": "2.1.0",
"check-dts": "0.7.2",
"component-emitter": "2.0.0",
"cross-env": "^7.0.3",
"eslint": "8.55.0",
"git-authors-cli": "1.0.47",
"husky": "8.0.3",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"rimraf": "5.0.5",
"sazerac": "2.0.0",
"semantic-release": "22.0.8",
"sinon": "17.0.1",
"snap-shot-it": "7.9.10",
"typedoc": "0.25.4",
"vis-dev-utils": "4.0.45"
}
}