-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.2 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "validity",
"description": "Validator framework for object validation",
"version": "1.1.1",
"author": "Paul Serby <paul@serby.net>",
"license": "ISC",
"contributors": [
{
"name": "Paul Serby",
"email": "paul@serby.net"
}
],
"files": [
"index.js"
],
"dependencies": {},
"devDependencies": {
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jsinspect": "^0.12.7",
"prettier": "^1.17.1"
},
"keywords": [
"validation"
],
"repository": "git://github.com/serby/validity",
"main": "./property-validators",
"scripts": {
"inspect": "jsinspect",
"lint:js": "eslint . --cache --ext '.js'",
"prettier": "prettier --write '**/*.js'",
"test": "yarn test:code && yarn lint:js && yarn inspect",
"test:code": "jest --coverage",
"test:coverage": "jest --coverage --watch"
},
"engines": {
"node": ">= 8"
}
}