-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "ninjatrader",
"version": "0.2.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A tiny js wrapper for the NinjaTrader 8 file api.",
"files": [
"dist/**/*"
],
"keywords": [
"ninjatrader"
],
"author": "Stephen Poole",
"scripts": {
"start": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "return 1",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect && yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenpoole/ninjatrader"
},
"license": "MIT",
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/node": "^15.12.2",
"@types/webpack": "^4.4.24",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"awesome-typescript-loader": "^5.2.1",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"snyk": "^1.630.0",
"source-map": "^0.7.3",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.10",
"ts-node": "^10.0.0",
"typescript": "^3.8.3",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "^1.7.2"
},
"snyk": true,
"dependencies": {
"date-fns": "^2.22.1"
}
}