-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "trippy-ml",
"version": "1.0.0",
"description": "Basic Machine Learning Library",
"main": "index.js",
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ry-randall/trippy-ml.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ry-randall/trippy-ml/issues"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"homepage": "https://github.com/ry-randall/trippy-ml#readme",
"devDependencies": {
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"ts-standard": {
"globals": [
"describe",
"it",
"test",
"expect"
]
}
}