-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 864 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
{
"name": "vlid",
"version": "1.0.4",
"description": "Lightweight validation library with NO dependencies. A nice Joi alternative with a similar API.",
"main": "dist/index.js",
"source": "src/index.js",
"scripts": {
"build": "parcel build src/index.js",
"prettier": "prettier src/**.js src/**/*.js --write",
"test": "jasmine __tests__/**.js"
},
"keywords": [
"joi",
"yup",
"validation",
"browser validation",
"form validation",
"json validation",
"lightweight validation"
],
"author": "Vance Lucas <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/vlucas/vlid"
},
"license": {
"type": "BSD-3-Clause"
},
"devDependencies": {
"jasmine": "^3.3.1",
"prettier": "^1.16.4"
},
"browserslist": [
"> 3%",
"maintained node versions"
]
}