-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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": "@grycap/oscar-js",
"version": "2.3.1",
"type": "module",
"scope": "@grycap",
"description": "Javascript client to interact with OSCAR cluster and services. GRyCAP - i3M - Universitat Politècnica de València, Spain",
"repository": {
"type": "git",
"url": "https://github.com/grycap/oscar-js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"start:prod": "node dist/index.js",
"start:dev": "nodemon src/app.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"AI",
"Javascript",
"UPV",
"OSCAR",
"GRyCAP"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"ts-node": "^10.9.1",
"typescript": "^4.0.0"
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"cors": "^2.8.5",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.9"
}
}