forked from poppinss/indicative
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "indicative",
"version": "3.0.6",
"description": "Intentionally beautiful schema and raw validator for nodejs",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "amanvirk",
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"japa": "^1.0.5",
"japa-cli": "^1.0.1",
"nyc": "^11.2.1",
"semver": "^5.4.1",
"standard": "^10.0.3"
},
"dependencies": {
"@slynova/slug": "^1.0.0",
"date-fns": "^1.29.0",
"haye": "^1.0.1",
"lodash": "^4.17.4",
"p-lazy": "^1.0.0",
"p-series": "^1.0.0",
"p-settle": "^2.0.0",
"pluralize": "^7.0.0",
"pope": "^1.0.4"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poppinss/indicative.git"
},
"keywords": [
"node-validator",
"validator",
"schema-validator",
"quick-validations"
],
"bugs": {
"url": "https://github.com/poppinss/indicative/issues"
},
"homepage": "https://github.com/poppinss/indicative#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"bin",
"test"
]
}
}