-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "decision-tree-ts",
"version": "1.0.2",
"description": "TS/JS npm module to train and use a decision tree machine learning model.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"test": "jest",
"lint": "eslint",
"fix": "eslint src --fix",
"format": "prettier --write \"**/*.+(js|ts|json)\""
},
"author": "Olli Glorioso",
"license": "MIT",
"devDependencies": {
"@tensorflow/tfjs": "^3.18.0",
"@types/jest": "^27.5.1",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.0",
"linear-regression-ts": "^0.0.5",
"prettier": "2.7.1",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}