-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 966 Bytes
/
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
{
"name": "vamlid",
"version": "2.0.1",
"type": "module",
"description": "A simple way to validate an object against a pure javascript schema.",
"main": "index.js",
"scripts": {
"test": "node test",
"lint": "eslint ."
},
"keywords": [
"validation",
"validator",
"valid",
"schema",
"sanitize",
"sanitise",
"sanitisation",
"parse"
],
"author": {
"name": "Mark Wylde",
"email": "me@markwylde.com",
"url": "https://github.com/markwylde"
},
"license": "MIT",
"devDependencies": {
"ava": "^5.3.1",
"basictap": "^4.3.5",
"c8": "^8.0.1",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markwylde/vamlid.git"
},
"bugs": {
"url": "https://github.com/markwylde/vamlid/issues"
},
"homepage": "https://github.com/markwylde/vamlid#readme"
}