-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.27 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
{
"name": "periodic-time-vis",
"version": "1.0.0",
"description": "Software prototype for the interactive visual analysis of event data to detect periodic behavior in the data without explicit knowledge of the period length.",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"outputDir": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "rm -r dist/ && rollup -c --environment BUILD:production",
"dev": "rollup -cw"
},
"author": {
"name": "Max Franke",
"email": "[email protected]"
},
"repository": "https://github.com/UniStuttgart-VISUS/periodic-time-vis.git",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"rollup": "^2.52.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-copy-watch": "^0.0.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@types/base64-js": "^1.3.0",
"@types/d3": "^7.1.0",
"base64-js": "^1.5.1",
"d3": "^7.4.4",
"lit": "^2.3.1",
"resizing-svg-canvas": "git+ssh://github.com/mfranke93/resizing-svg-canvas#v0.1.1"
}
}