-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 4.03 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "thaw-ta-math",
"version": "0.0.7",
"description": "Financial technical analysis library in TypeScript. Calculates indicators and overlays from OHLCV data.",
"keywords": [
"finance",
"fintech",
"technical analysis",
"TypeScript"
],
"private": false,
"homepage": "https://github.com/tom-weatherhead/thaw-ta-math#readme",
"repository": "github:tom-weatherhead/thaw-ta-math",
"bugs": {
"url": "https://github.com/tom-weatherhead/thaw-ta-math/issues"
},
"source": "src/main.ts",
"browser": "dist/thaw-ta-math.js",
"main": "dist/thaw-ta-math.cjs.js",
"module": "dist/thaw-ta-math.esm.js",
"types": "dist/types/main.d.ts",
"files": [
"dist/thaw-ta-math*.js",
"dist/types/**/*.d.ts"
],
"man": [],
"directories": {
"lib": "lib",
"// bin": "It is an error to specify both bin and directories.bin",
"man": "man",
"// doc": "Put markdown files in the directories.doc directory",
"doc": "doc",
"example": "examples",
"test": "test"
},
"scripts": {
"clean-build-products": "rm -rf coverage && rm -rf dist",
"clean-packages": "rm -rf node_modules && rm -f package-lock.json",
"clean": "npm run clean-build-products && npm run clean-packages",
"build-and-test": "npm run prettier-check && npm run lint && npm run build && npm run rollup && npm test",
"prettier-check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier-list": "prettier --list-different \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier-format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint . --ext .js --ext .ts",
"build": "tsc",
"rollup": "rollup --config",
"test": "jest --detectOpenHandles --forceExit",
"deploy": "eval mv $npm_package_name-$npm_package_version.tgz $(echo $npm_package_config_deploy_target_dir)/",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run prettier-check && npm test",
"preversion": "npm run lint && npm run prettier-check",
"version": "npm run prettier-format && git add -A src",
"postversion": "git push && git push --tags",
"re": "npm run prettier-format && npm run clean-build-products && npm run build-and-test && npm pack && npm run deploy",
"loc": "git ls-files | grep -v package-lock.json | tr -d '\\r' | tr '\\n' '\\0' | xargs -0 wc -l",
"f": "npm run clean && npm i && npm run re",
"start": "npm run f"
},
"config": {
"deploy_target_dir": "$NPM_PKG_DIR"
},
"publishConfig": {},
"dependencies": {
"thaw-common-utilities.ts": "^0.0.13",
"thaw-macd": "^0.0.6"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/eslint": "^8.4.5",
"@types/jest": "^28.1.4",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@typescript-eslint/typescript-estree": "^5.30.5",
"eslint": "^8.19.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"rollup": "^2.76.0",
"rollup-plugin-terser": "^7.0.2",
"ta-math": "^1.0.49",
"typescript": "^4.7.4",
"typescript-eslint-language-service": "^5.0.0"
},
"// The correct name is bundledDependencies": true,
"// The name bundleDependencies is also honoured": true,
"// bundledDependencies": "... is an array of package names",
"// bundledDependencies: See": "https://docs.npmjs.com/cli/v6/configuring-npm/package-json#bundleddependencies",
"bundledDependencies": [],
"peerDependencies": {},
"optionalDependencies": {
"fsevents": "*"
},
"engines": {
"node": ">= 8"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"ia32",
"x64"
],
"author": "Tom Weatherhead <[email protected]> (https://github.com/tom-weatherhead)",
"contributors": [
"Anonymous <[email protected]>",
"Assimilated Captain <[email protected]>",
"Austin James <[email protected]>",
"Autonomous Weapons Systems Unlimited <[email protected]>",
"Buddy Guy <[email protected]>",
"Deprecated <[email protected]>",
"Loitering Munition <[email protected]>",
"Sgt. Pepper <[email protected]>"
],
"license": "MIT"
}