forked from pyatyispyatil/flame-chart-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 KB
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
{
"name": "gflame",
"version": "3.1.0",
"description": "",
"main": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"build:tsc": "tsc",
"watch": "rollup -c -w -m",
"watch:tsc": "tsc -w",
"test": "jest",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts' && echo 'no lint problems found!'"
},
"dependencies": {
"color": "^3.1.3",
"events": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.12.17",
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.1",
"@swc/core": "^1.2.163",
"@swc/jest": "^0.2.20",
"@types/color": "^3.0.3",
"@types/events": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "2.6.1",
"rollup": "^2.78.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "4.6.3"
}
}