-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "trading-view-parser-nodejs-16",
"version": "1.0.12",
"description": "Trading view trading recommends parse - NodeJS 16+",
"engines": {
"node": ">= 16"
},
"main": "build/src/index.js",
"devDependencies": {
"@types/jest": "~26.0.20",
"@types/node": "~14.14.31",
"@typescript-eslint/eslint-plugin": "~4.16.1",
"@typescript-eslint/parser": "~4.16.1",
"eslint": "~7.21.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jest": "~24.1.5",
"jest": "~26.6.3",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.5.2",
"tslib": "~2.1.0",
"tsutils": "~3.20.0",
"typescript": "^4.2.4"
},
"files": [
"build/src"
],
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparck75/trading-view-parser-nodejs-16.git"
},
"author": "[email protected]",
"homepage": "https://github.com/sparck75/trading-view-parser-nodejs-16#readme",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4"
},
"volta": {
"node": "16.13.2"
}
}