-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.19 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
{
"name": "talib-stream",
"version": "0.2.21",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && rimraf ./dist/controllers/__tests__",
"tsc": "tsc",
"tsc:watch": "tsc -w",
"prettier": "node ./node_modules/prettier/bin-prettier.js --parser=typescript --single-quote --trailing-comma=all --write --print-width=120 'src/**/*.ts'",
"test": "ava"
},
"ava": {
"nodeArguments": [
"--loader=ts-node/esm"
],
"typescript": {
"compile": false,
"rewritePaths": {
"src/": "dist/"
}
}
},
"author": "Hao Wang",
"license": "MIT",
"keywords": [
"nodejs",
"typescript",
"talib"
],
"repository": {
"type": "git",
"url": "https://github.com/z-hao-wang/node-talib-stream.git"
},
"peerDependencies": {},
"devDependencies": {
"@ava/typescript": "4.1.0",
"@types/node": "11.13.4",
"ava": "5.3.1",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"talib": "1.1.5",
"ts-node": "10.9.1",
"typescript": "4.9"
},
"dependencies": {
"collections": "5.1.12",
"qs-js-utils": "0.0.42",
"sliding-window-arr": "0.1.3"
}
}