-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "joi-validation-builder",
"version": "1.0.0",
"description": "Joi Validation Builder",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prebuild": "rm -rf ./dist",
"prepare": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"directories": {
"dist": "dist"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:moonthug/joi-builder.git"
},
"keywords": [
"joi",
"validation",
"builder"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "",
"dependencies": {
"joi": "^17.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/joi": "^14.3.4",
"@types/mocha": "^8.0.3",
"@types/node": "^12.11.2",
"@types/sinon": "^9.0.5",
"chai": "^4.2.0",
"mocha": "^8.1.2",
"nyc": "^15.1.0",
"sinon": "^6.1.5",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-semistandard": "^8.0.1",
"typescript": "^3.6.4"
},
"optionalDependencies": {
"leasot": "*"
}
}