forked from debut-js/Indicators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.6 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
{
"author": "Dmitry Yurov",
"name": "@debut/indicators",
"publishConfig": {
"access": "public"
},
"description": "Implementation of most popular technical stock indicators for debut environment",
"version": "0.5.1",
"license": "GPL-3.0",
"homepage": "https://github.com/debut-js/Indicators",
"repository": {
"type": "git",
"url": "git@github.com:debut-js/Indicators.git"
},
"scripts": {
"start": "ts-node --",
"build": "rollup -c ./rollup.config.js",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prettier": "prettier --config './.prettierrc.js' --write 'src/**/*.ts'"
},
"bugs": {
"url": "https://github.com/debut-js/Indicators/issues"
},
"main": "lib/indicators.cjs.js",
"module": "lib/indicators.esm.js",
"browser": "lib/indicators.umd.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"acorn": "^7.3.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"rollup": "^2.18.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify-es": "0.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"optionalDependencies": {}
}