-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "revolut-web-api-zod-model",
"version": "1.0.1",
"description": "zod validation and TS model for the Revolut Web API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"prepublish": "npm run build",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanblaginov/revolut-web-api-zod-model.git"
},
"keywords": [
"revolut",
"zod",
"model",
"validation"
],
"author": "Stefan Blaginov",
"license": "ISC",
"bugs": {
"url": "https://github.com/stefanblaginov/revolut-web-api-zod-model/issues"
},
"homepage": "https://github.com/stefanblaginov/revolut-web-api-zod-model#readme",
"devDependencies": {
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"zod": "^3.19.1"
}
}