forked from tangtan/iStoryline.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.83 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
{
"name": "i-storyline-js",
"version": "0.0.1",
"description": "Implementation of [iStoryline](http://www.tantang.org/publication/2018_infovis_istoryline/2018_infovis_istoryline.pdf)",
"keywords": [
"Storyline",
"Visualization",
"Narrative"
],
"author": {
"name": "Tan Tang",
"url": "http://www.tantang.org/"
},
"main": "src/js/index.js",
"module": "index",
"jsnext:main": "index",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tangtan/iStoryline.js"
},
"eslintConfig": {
"env": {
"browser": true
}
},
"scripts": {
"build": "babel src -d build",
"start": "webpack-dev-server",
"test": "mocha -r esm --recursive",
"preinstall": "npx npm-force-resolutions"
},
"resolutions": {
"glob-parent": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"axios": "^0.21.1",
"d3-fetch": "^1.1.2",
"d3-scale": "^3.2.0",
"fetch-json": "^2.6.4",
"hull.js": "^1.0.2",
"jquery": "^3.6.0",
"json": "^11.0.0",
"lodash": "^4.17.19",
"mathjs": "^7.6.0",
"node-fetch": "^3.2.4",
"quadprog": "^1.5.1",
"simplify-js": "git+https://github.com/mourner/simplify-js.git",
"snapsvg": "^0.5.1",
"svgexport": "^0.4.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.9.6",
"chai": "^4.2.0",
"eslint-config-prettier": "^6.11.0",
"esm": "^3.2.25",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"imports-loader": "^0.8.0",
"mocha": "^7.1.2",
"prettier": "1.18.2",
"pretty-quick": "^2.0.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0",
"webpackbar": "^5.0.2"
}
}