-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1021 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1021 Bytes
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
{
"name": "@uphold/validator.js",
"version": "3.0.2",
"description": "Extensive validations built on top of validator.js",
"main": "index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.js"
}
},
"author": "Uphold",
"license": "MIT",
"scripts": {
"lint": "eslint",
"release": "release-it",
"test": "NODE_V8_COVERAGE=coverage node --test --experimental-test-coverage index.test.js",
"test:watch": "node --test --watch index.test.js"
},
"dependencies": {
"json-mask": "^2.0.0",
"lodash": "^4.17.21",
"validator.js": "^2.0.3",
"validator.js-asserts": "^10.0.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.2.0",
"@uphold/github-changelog-generator": "^4.0.2",
"@uphold/http-errors": "^1.3.0",
"eslint": "~9.27.0",
"eslint-config-uphold": "^6.5.1",
"prettier": "^3.5.3",
"release-it": "^19.2.3"
},
"pre-commit": [
"lint"
]
}