-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "formal",
"version": "0.3.0",
"description": "Simple, flexible node.js form module with casting and validation; inspired by mongoose",
"main": "index.js",
"scripts": {
"test": "grunt test",
"blanket": {
"pattern": [
"formal/lib"
]
},
"coverage": "grunt mochacov:coverage > _gh-pages/coverage.html"
},
"repository": {
"type": "git",
"url": "http://github.com/nrako/formal"
},
"bugs": {
"url": "http://github.com/nrako/formal/issues"
},
"keywords": [
"form",
"validation",
"mongoose",
"connect",
"express"
],
"author": "@nrako <nico@nrako.com>",
"license": "MIT",
"engines": {
"node": ">= v0.8.0"
},
"dependencies": {
"mpath": "~0.2.1",
"inherits": "~2.0.1",
"lodash-template": "~1.0.0",
"deep-extend": "~0.2.6"
},
"devDependencies": {
"grunt": "~0.4.1",
"glob": "~3.2.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-yuidoc": "~0.5.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-jsvalidate": "~0.2.1",
"grunt-simple-mocha": "~0.4.0",
"grunt-mocha-cov": "~0.1.1",
"grunt-dox": "~0.5.0",
"grunt-plato": "~0.2.0",
"chai": "~1.8.1",
"matchdep": "~0.3.0",
"blanket": "~1.1.4",
"travis-cov": "~0.2.4",
"coffee-script": "~1.6.3",
"grunt-jsonlint": "~1.0.0"
}
}