-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "SliceLens",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nyuvis/SliceLens.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"test": "uvu -r tsm tests",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"@types/d3": "^7.1.0",
"@types/dompurify": "^2.3.2",
"@types/marked": "^4.0.1",
"@types/sinon": "^10.0.6",
"esm": "3.2.25",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sinon": "^11.1.2",
"svelte": "^3.49.0",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.0.0",
"tslib": "^2.0.0",
"tsm": "^2.0.0",
"typescript": "^4.0.0",
"uvu": "^0.5.1"
},
"dependencies": {
"d3": "^7.3.0",
"dompurify": "^2.0.17",
"js-combinatorics": "^1.5.6",
"marked": "^4.0.10",
"rollup-plugin-web-worker-loader": "^1.6.0",
"sirv-cli": "^1.0.0"
}
}