-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "@begin/validator",
"version": "1.0.3",
"description": "Validate request bodies of JSON or x-url-form-encoded content-type",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run test:integration",
"test:integration": "tape 'test/**/*-test.js' | tap-arc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beginner-corp/validator.git"
},
"keywords": [
"validate",
"schema",
"json",
"validation"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/beginner-corp/validator/issues"
},
"homepage": "https://github.com/beginner-corp/validator#readme",
"dependencies": {
"jsonschema": "^1.4.1"
},
"devDependencies": {
"@architect/eslint-config": "^2.0.1",
"eslint": "^8.18.0",
"formdata-node": "^5.0.0",
"tap-arc": "^0.3.4",
"tape": "^5.5.3"
},
"eslintConfig": {
"extends": "@architect/eslint-config",
"parserOptions": {
"sourceType": "module"
}
}
}