-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 732 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 732 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
{
"name": "rule-tree",
"version": "0.0.6",
"description": "Simpler structure for complex validations",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src -d ./lib",
"test": "jest"
},
"keywords": [
"validator",
"validation",
"rule",
"tree"
],
"author": "Rafael Ferrari <rafael.ferrari.bs@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rafaelfbs/rule-tree.git"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/cli": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"jest": "^24.8.0"
},
"jest": {
"testURL": "http://localhost/",
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}