-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 948 Bytes
/
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
{
"name": "hst-parser",
"description": "Parser for the MetaTrader History (.hst) File Format",
"author": "gitbugr <[email protected]>",
"version": "0.2.2",
"license": "MIT",
"main": "dist/hst_reader.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gitbugr/hst-parser-nodejs.git"
},
"keywords": [],
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"watch:build": "tsc --watch",
"watch:server": "nodemon './dist/demo.js' --watch './dist'",
"start": "npm-run-all clean build --parallel watch:build watch:server --print-label",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/node": "^10.11.6",
"jest": "^23.6.0",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"typescript": "^3.0.3"
},
"dependencies": {}
}