-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "validate-promise",
"version": "3.8.4",
"description": "Promised based validation library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"dev": "tsc --watch",
"test": "nyc mocha",
"prepublish": "npm run build"
},
"keywords": [
"validate"
],
"author": "Rob Clayburn, Richard Honor",
"license": "MIT",
"devDependencies": {
"@babel/register": "^7.10.5",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"jsdom": "^16.4.0",
"mocha": "^8.1.2",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"lodash": "^4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infosum/validate-promise.git"
},
"dependencies": {
"is-email": "^1.0.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"coverage",
"node_modules",
"dist",
"test"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"./test/setup.js"
],
"reporter": [
"lcov",
"text"
],
"all": true
}
}