-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "tscharm",
"version": "0.1.2",
"description": "Timeline chart",
"repository": "https://github.com/adrogin/tscharm",
"keywords": [
"typescript",
"chart",
"timeline"
],
"main": "dist/tscharm.js",
"scripts": {
"test": "npx jest",
"lint": "npx eslint",
"build": "rimraf js-compiled && rimraf dist && tsc && rollup --config rollup.config.js",
"prettier": "prettier **/*.ts --write"
},
"prettier": {
"tabWidth": 4
},
"author": "Alexander Drogin",
"license": "MIT",
"type": "module",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.11.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^9.11.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}