-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "feathers-fastest-validator",
"description": "The validator hooks integrate with fastest-validator",
"version": "2.0.0",
"homepage": "https://github.com/JPooban/featherjs-fastest-validator",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin",
"feathers-hooks",
"hooks",
"fastest-validator",
"feathers-fastest-validator"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/JPooban/featherjs-fastest-validator.git"
},
"author": {
"name": "Jugkapong Pooban",
"email": "j.pooban@gmail.com",
"url": "https://medium.com/@pr1te"
},
"contributors": [],
"bugs": {
"url": "https://github.com/JPooban/featherjs-fastest-validator/issues"
},
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "eslint --no-ignore lib/*.js lib/**/*.js --fix",
"ava": "NODE_ENV=test ava --verbose",
"coverage": "nyc ava && nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run coverage",
"commit": "git-cz"
},
"semistandard": {
"env": [
"ava"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/errors": "^4.5.12",
"fastest-validator": "^1.12.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/feathers": "^4.5.12",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"ava": "^4.2.0",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"nyc": "^15.1.0"
},
"ava": {
"files": [
"test/**/*.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}