-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "validate-data-tree",
"version": "1.0.5",
"description": "Validate your data trees using a dict schema",
"main": "lib/validate.js",
"module": "src/validate.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint src",
"build": "babel src -d lib",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyppan/validate-data-tree.git"
},
"keywords": [
"validation"
],
"author": "cyppan",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyppan/validate-data-tree/issues"
},
"homepage": "https://github.com/cyppan/validate-data-tree#readme",
"dependencies": {
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"validator": "^10.9.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"acorn": "^6.0.4",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
}
}