-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 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": "sound",
"description": "Make sure your data is sound! Schema generator, converter and validation library for Node.js.",
"version": "3.1.0",
"main": "sound.js",
"type": "module",
"homepage": "https://github.com/chilts/sound",
"repository": {
"type": "git",
"url": "git://github.com/chilts/sound.git"
},
"bugs": {
"url": "http://github.com/chilts/sound/issues",
"mail": "[email protected]"
},
"scripts": {
"test": "npm run eslint && npm run tape",
"tape": "c8 tape test/*.js",
"eslint": "eslint **/*.js",
"eslint-fix": "eslint --fix **/*.js"
},
"dependencies": {
"isemail": "^3.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"c8": "^7.11.3",
"eslint": "^8.20.0",
"tape": "^5.5.3"
},
"author": {
"name": "Andrew Chilton",
"email": "[email protected]",
"url": "https://chilts.org/"
},
"contributors": [],
"keywords": [
"validate",
"validation",
"input",
"params"
],
"license": "MIT"
}