This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
schemajs/package.json

26 lines
570 B
JSON
Raw Normal View History

2011-09-23 21:58:47 +00:00
{
"name": "schemajs",
2011-11-16 17:51:23 +00:00
"description": "validate objects (including http request params) against a schema. includes express middleware",
2012-05-28 00:42:26 +00:00
"version": "0.1.7",
2011-09-23 21:58:47 +00:00
"author": "eleith",
"contributors": ["andychilton"],
2011-09-23 21:58:47 +00:00
"repository":
{
"type": "git",
"url": "http://github.com/eleith/schemajs.git"
},
2011-11-14 00:01:24 +00:00
"devDependencies": {
2012-05-28 00:35:58 +00:00
"mocha": ">= 1.0.3"
2012-05-28 00:42:26 +00:00
"chai": ">= 1.0.3"
2011-11-14 00:01:24 +00:00
},
2011-09-24 17:29:48 +00:00
"dependencies":
{
"underscore": ">= 1.1.7"
},
"engine": ["node >= 0.4.8"],
2011-11-14 00:01:24 +00:00
"main": "schema",
"scripts": {
2012-05-28 00:35:58 +00:00
"test" : "mocha -R spec test/*.js"
2011-11-14 00:01:24 +00:00
}
2011-09-23 21:58:47 +00:00
}