-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
54
55
56
{
"name": "mse-ts",
"version": "1.0.2",
"description": "Typed mean squared error estimator",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"start": "ts-node ./src/index.ts",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint ./src --ext .ts,.tsx",
"test": "ts-mocha -p tsconfig.json tests/test.ts --timeout 10000"
},
"files": [
"README.md",
"CHANGELOG.md",
"build/**/*"
],
"repository": "https://github.com/nyan-left/mse-ts",
"author": "Deimantas Jakovlevas",
"license": "MIT",
"bugs": {
"url": "https://github.com/nyan-left/mse-ts/issues"
},
"homepage": "https://github.com/nyan-left/mse-ts#readme",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.1.0",
"prettier": "^2.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"mocha": "^8.3.0"
},
"dependencies": {},
"keywords": [
"mse",
"mean",
"square",
"squared",
"error",
"machine learning",
"estimator",
"statistics",
"average"
]
}