forked from benkitzelman/validatormator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.02 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
45
46
{
"name": "validatormator",
"version": "1.0.1",
"description": "A collection of validators for general use, or with Node-ORM2",
"homepage": "http://thecodeabode.blogspot.com",
"author": {
"name": "Ben Kitzelman",
"email": "[email protected]",
"url": "http://thecodeabode.blogspot.com"
},
"main": "index.js",
"scripts": {
"ci": "npm run coverage",
"coverage": "nyc npm run test && rm -rf coverage",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git://github.com/benkitzelman/validatormator.git"
},
"nyc": {
"exclude": [
"config/settings.js",
"mock",
"script",
"test"
],
"check-coverage": true,
"statements": 91.11,
"branches": 88.89,
"functions": 100,
"lines": 91.67
},
"dependencies": {
"jsonschema": "~1.4.1"
},
"devDependencies": {
"async": "*",
"mocha": "*",
"mocha-lcov-reporter": "0.0.2",
"nyc": "~15.1.0",
"orm": "~5.0.5",
"should": "*",
"sqlite3": "5.0.1"
}
}