-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 976 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 976 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
39
40
{
"name": "create-quantform-app",
"version": "0.5.0",
"description": "Node.js library for building systematic trading strategies in reactive way.",
"author": "Mateusz Majchrzak",
"license": "MIT",
"homepage": "https://quantform.io",
"repository": {
"type": "git",
"url": "https://github.com/quantform/quantform"
},
"publishConfig": {
"access": "public"
},
"bin": "./dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest -c jestconfig.json --coverage --passWithNoTests"
},
"dependencies": {
"commander": "^9.1.0",
"edit-json-file": "^1.7.0",
"promisify": "^0.0.3",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">= 14.18.1"
}
}