-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "json-joi-converter",
"version": "17.13.4",
"description": "Converts json from and to Joi objects.",
"license": "MIT",
"devDependencies": {
"@types/node": "14.14.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-tslint": "^3.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"joi": "^17.13.3",
"ts-mocha": "^10.0.0",
"typescript": "^3.9.3"
},
"engines": {
"node": ">=6.0.0"
},
"main": "./dist/index.js",
"typings": "./dts/index.d.ts",
"scripts": {
"build": "rm -rf dist/* && rm -rf dts/* && tsc",
"test": "ts-mocha test/*.spec.ts",
"lint-fix": "eslint \"src/**/*.ts\" --fix",
"browserify": "browserify dist/index.js -o browser/json-joi-converter.js --standalone=JsonJoi && npm run minify",
"minify": "uglifyjs browser/json-joi-converter.js > browser/json-joi-converter.min.js"
},
"peerDependencies": {
"joi": "^17.13.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siavashg87/json-joi-converter.git"
},
"keywords": [
"joi",
"@hapi/joi",
"joi typescript",
"joi json",
"joi-json",
"json validator",
"schema",
"validation",
"converter"
],
"bugs": {
"url": "https://github.com/siavashg87/json-joi-converter/issues"
},
"homepage": "https://github.com/siavashg87/json-joi-converter#readme",
"directories": {
"test": "test"
},
"author": "Siavash Goudarzi <[email protected]>"
}