-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 751 Bytes
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
{
"name": "validate-options",
"version": "0.3.0",
"description": "Simple option validation library",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/jut-io/validate-options.git"
},
"keywords": [
"validation",
"options"
],
"author": "Michael Demmer <demmer@jut.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jut-io/validate-options/issues"
},
"homepage": "https://github.com/jut-io/validate-options",
"dependencies": {
"underscore": ">=1.7.0"
},
"devDependencies": {
"chai": "^1.9.2",
"grunt": "^0.4.5",
"grunt-dry": "^0.3.0"
},
"files":[
"browser/*.js",
"index.js",
"lib"
]
}