-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "@softstack/joi-bigint",
"version": "1.1.1",
"description": "Joi extension for bigint",
"license": "MIT",
"author": "Softstack GmbH <[email protected]> (https://softstack.io)",
"repository": {
"type": "git",
"url": "https://github.com/softstackhq/joi-bigint"
},
"homepage": "https://github.com/softstackhq/joi-bigint#readme",
"keywords": [
"joi",
"bigint"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prettier": "prettier --write \"src/**/*.ts\"",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepare": "rm ./lib/* -rf && npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"joi": ">=17"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"joi": "^17.9.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}