forked from clientIO/joint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.39 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": "jointjs",
"title": "JointJS",
"description": "JavaScript diagramming library",
"keywords": [
"diagram",
"flowchart",
"graph",
"visualization"
],
"scripts": {
"test": "grunt test",
"lint": "eslint types/**/*.d.ts src/**/*.mjs",
"lint:fix": "npm run lint -- --fix"
},
"sideEffects": false,
"version": "3.6.1",
"main": "dist/joint.min.js",
"module": "joint.mjs",
"style": "./dist/joint.min.css",
"types": "./dist/joint.d.ts",
"homepage": "http://jointjs.com",
"author": {
"name": "client IO",
"url": "http://client.io"
},
"contributors": [
"David Durman <david@client.io> (https://github.com/DavidDurman)",
"Roman Bruckner <roman@client.io> (https://github.com/kumilingus)",
"Vladimir Talas <lades@client.io> (https://github.com/vtalas)",
"James Williams <james@client.io> (https://github.com/jamesgeorgewilliams)",
"Arthur Khokhlov <arthur@client.io> (https://github.com/Geliogabalus)",
"Martin Kanera <martinkanera@client.io> (https://github.com/MartinKanera)"
],
"repository": {
"type": "git",
"url": "https://github.com/clientIO/joint.git"
},
"bugs": {
"url": "https://github.com/clientIO/joint/issues"
},
"license": "MPL-2.0",
"files": [
"css",
"dist",
"src",
"types",
"index.js",
"joint.mjs"
],
"dependencies": {
"backbone": "~1.4.1",
"dagre": "~0.8.5",
"graphlib": "~2.1.8",
"jquery": "~3.6.1",
"lodash": "~4.17.21"
},
"devDependencies": {
"@types/backbone": "~1.4.15",
"@types/dagre": "~0.7.47",
"@types/graphlib": "~2.1.8",
"@types/jquery": "~3.5.13",
"@types/lodash": "~4.14.178",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"async": "2.6.1",
"chai": "4.2.0",
"cheerio": "0.22.0",
"core-js": "~3.8.3",
"es-module-shims": "0.2.4",
"eslint": "8.1.0",
"express": "4.16.3",
"grunt": "^1.3.0",
"grunt-browserify": "5.3.0",
"grunt-compile-docs": "1.2.1",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "3.0.0",
"grunt-contrib-qunit": "3.1.0",
"grunt-contrib-uglify": "4.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-env": "0.4.4",
"grunt-eslint": "21.0.0",
"grunt-karma": "3.0.1",
"grunt-mocha-test": "0.13.3",
"grunt-newer": "1.3.0",
"grunt-shell": "3.0.1",
"grunt-ts": "6.0.0-beta.22",
"grunt-webpack": "3.1.3",
"handlebars": "4.7.7",
"jit-grunt": "0.10.0",
"karma": "3.1.4",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.2",
"karma-qunit": "2.1.0",
"karma-sinon": "1.0.5",
"load-grunt-config": "0.19.2",
"mocha": "5.2.0",
"open-sans-fontface": "https://github.com/clientIO/open-sans/archive/1.4.2.tar.gz",
"prismjs": "1.24.0",
"puppeteer": "17.0.0",
"qunit": "2.8.0",
"requirejs": "2.3.6",
"rollup": "1.20.3",
"rollup-plugin-buble": "0.19.6",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-external-globals": "0.3.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "4.0.0",
"selenium-standalone": "6.15.3",
"serve-static": "1.13.2",
"should": "13.2.3",
"sinon": "7.2.2",
"time-grunt": "2.0.0",
"typescript": "4.8.3",
"webdriverio": "4.13.2",
"webpack": "4.28.3",
"webpack-dev-server": "3.1.14"
}
}