-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 987 Bytes
/
package.json
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
{
"name": "@dprovodnikov/validation",
"version": "1.2.6",
"description": "Declarative validation library for javascript objects.",
"main": "dist/index.js",
"dependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"jest": "^24.8.0"
},
"scripts": {
"build": "rm -rf dist && babel src -d dist --ignore **/*.test.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dprovodnikov/declarative-object-validation.git"
},
"keywords": [
"js",
"validation",
"rules"
],
"author": "Denys Provodnikov <dp.wireden@gmail.com> (https://madappgang.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dprovodnikov/declarative-object-validation/issues"
},
"homepage": "https://github.com/dprovodnikov/declarative-object-validation#readme"
}