-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "mtplot",
"version": "1.0.0",
"description": "Minimalistic time series plotting library with pattern detection",
"main": "dist/mtplot.js",
"module": "dist/mtplot.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint src/",
"docs": "jsdoc -c jsdoc.json",
"start": "serve demo/",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"chart",
"plot",
"time-series",
"visualization",
"svg"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.5",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"rollup": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.2.1",
"tslib": "^2.8.1",
"typescript": "^5.2.2"
}
}