-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.53 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
64
65
66
67
68
{
"name": "yaml-joi",
"version": "1.1.1",
"license": "MIT",
"main": "index.js",
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"description": "Parse string in yaml format into Joi validator",
"scripts": {
"lint": "tslint \"src/**/*.ts\" -c tslint.yml",
"build:node10": "tsc --build tsconfig.json",
"build:node8": "tsc --build tsconfig.node8.json",
"build": "npm run build:node10 && npm run build:node8",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"homepage": "https://github.com/alitajs/yaml-joi#readme",
"bugs": {
"url": "https://github.com/alitajs/yaml-joi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alitajs/yaml-joi.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"files": [
"build",
"build8",
"index.js"
],
"keywords": [
"joi",
"yaml",
"node",
"parser",
"validate",
"validator"
],
"dependencies": {
"joi": "^14.3.0",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/joi": "^14.3.3",
"@types/js-yaml": "^3.12.1",
"@types/node": "^8.10.0",
"coveralls": "^3.0.4",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"umi-test": "^1.6.1"
}
}