-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 937 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 937 Bytes
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
{
"name": "klinecharts-technical-indicator",
"version": "1.1.0",
"description": "Technical indicators for KLineChart.",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/liihuu/TechnicalIndicator"
},
"keywords": [
"KLineChart",
"TechnicalIndicator"
],
"author": "liihuu",
"license": "MIT",
"private": false,
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"build": "./node_modules/.bin/babel src --out-dir lib"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}