forked from gorse-io/gorse-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
57
58
{
"name": "gorsejs",
"description": "",
"version": "0.4.8",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"repository": "git://github.com/gorse-io/gorse-js",
"homepage": "https://github.com/gorse-io/gorse-js",
"author": "Nicolò Veronese (https://github.com/hitech95)",
"keywords": [
"typescript",
"gorse",
"machine-learning",
"collaborative-filtering",
"recommender-system"
],
"scripts": {
"prebuild": "yarn run lint",
"build": "rimraf dist && tsc --build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"prepack": "npmignore --auto"
},
"dependencies": {
"axios": "^1.6.2",
"axios-logger": "^2.7.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"nodemon": "^3.0.2",
"npmignore": "^0.3.1",
"prettier": "^3.1.1",
"redis": "^4.6.11",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"ignore": [
"!dist/"
]
}
}