-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 744 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
37
38
{
"name": "json-schema-validation-pipeline",
"version": "0.6.1",
"description": "Advanced JSON Schema Validator",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "Andrius Skerla",
"email": "andrius@skerla.com",
"license": "MIT",
"keywords": [
"json",
"schema",
"validation",
"pipeline",
"validator",
"advanced"
],
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.0.1"
},
"repository": "https://github.com/rainder/json-schema-validation-pipeline",
"dependencies": {
"lodash": "^2.4.1",
"object-deep": "0.0.5",
"object-path": "^0.6.0"
},
"engines": {
"node": ">= 0.10.20"
},
"config":{
"blanket": {
"pattern": "lib"
}
}
}