-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "@webbower/validator",
"version": "0.2.0",
"description": "Simple data validation with support for aggregating multiple validation failure messages",
"main": "index.js",
"module": "src/validator.js",
"author": "Matt Bower (http://webbower.com/)",
"homepage": "https://github.com/webbower/validator#readme",
"repository": {
"type": "git",
"url": "https://github.com/webbower/validator.git"
},
"bugs": "https://github.com/webbower/validator/issues",
"license": "MIT",
"scripts": {
"dev": "chokidar src test -c \"clear && yarn run -s test:dev\" --initial --silent",
"test": "NODE_ENV=test riteway -r esm test/**/*.test.js",
"test:dev": "yarn run test | tap-color && echo 'Test pass.'"
},
"dependencies": {
"lodash.iserror": "3.1.1"
},
"devDependencies": {
"chokidar": "3.4.0",
"chokidar-cli": "2.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.4",
"esm": "3.2.25",
"prettier": "2.0.5",
"riteway": "6.1.2",
"tap-color": "1.2.0"
}
}