-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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": "dk-chart",
"version": "1.2.1",
"description": "simple & lightweight financial chart",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .ts src/",
"build": "npm run lint && rollup --config",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push origin main && git push origin main --tags"
},
"keywords": [
"chart",
"candlestick",
"canvas",
"typescript",
"financial",
"dk-chart"
],
"author": "dogyeong <shroad1802@gmail.com> (https://github.com/dogyeong)",
"repository": {
"type": "git",
"url": "https://github.com/dogyeong/dk-chart"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.1",
"rollup": "^2.51.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.0",
"typescript": "^4.3.2"
},
"files": ["dist"]
}