forked from klinecharts/KLineChart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "klinecharts",
"version": "8.3.5",
"description": "Lightweight k-line chart built with html5 canvas",
"main": "index.js",
"types": "./types/index.d.ts",
"files": [
"LICENSE",
"README.md",
"docs/",
"index.js",
"index.blank.js",
"index.simple.js",
"types/",
"dist/",
"lib/",
"licenses/",
"NOTICE"
],
"repository": {
"type": "git",
"url": "https://github.com/liihuu/KLineChart"
},
"keywords": [
"k-line",
"time-line",
"candlestick",
"technical-indicators",
"finance",
"klinechart",
"stockchart",
"stock",
"chart",
"canvas"
],
"author": "liihuu",
"license": "Apache-2.0",
"private": false,
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"build-extension": "./node_modules/.bin/babel src/extension --out-dir lib",
"build-core": "./node_modules/.bin/rollup -c ./config/rollup.config.js",
"build": "npm run build-extension && npm run build-core",
"test": "./node_modules/.bin/mocha --require @babel/register tests/",
"deploy": "gh-pages -d website"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.16.7",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^2.3.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"rollup": "^2.63.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^3.6.4"
}
}