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
586 B
JSON
Raw Permalink Normal View History

2011-09-23 21:58:47 +00:00
{
2012-10-07 23:24:43 +00:00
"name": "schemajs",
"description": "validate objects (including http request params) against a schema. includes express middleware",
2015-11-22 17:54:53 +00:00
"version": "0.1.14",
2012-10-07 23:24:43 +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:44:08 +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"
},
2012-10-07 23:24:43 +00:00
"engine": ["node >= 0.4.8"],
"main": "schema",
2011-11-14 00:01:24 +00:00
"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
}