-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 989 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
{
"name": "validatormator",
"version": "0.0.14",
"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": {
"coverage": "mocha --reporter html-cov > coverage.html && rm -rf coverage/ && open coverage.html",
"test": "npm run prepublish && mocha && npm run coverage",
"prepublish": "coffee -c -o lib src/*.coffee"
},
"repository": {
"type": "git",
"url": "git://github.com/benkitzelman/validatormator.git"
},
"dependencies": {
"jsonschema": "1.0.0"
},
"devDependencies": {
"async": "*",
"coffee-coverage": "^0.6.2",
"coffee-script": "^1.9.3",
"istanbul": "^0.3.17",
"mocha": "*",
"mocha-lcov-reporter": "0.0.2",
"orm": "~2.0.13",
"should": "*",
"sqlite3": "3.0.8"
}
}