forked from SafetyCulture/joi-timezone
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.18 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-tz",
"version": "5.0.0",
"description": "Timezone string validation for Joi 16.x or higher.",
"keywords": [
"joi",
"extension",
"timezone",
"tz",
"validation",
"validator",
"luxor"
],
"exports": ["./lib/index.js"],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/tjdavey/joi-tz.git"
},
"scripts": {
"test": "tav",
"coverage": "jest --coverage",
"lint": "eslint .",
"clean": "rm -rf node_modules/ && rm -rf coverage",
"posttest": "npm run lint"
},
"author": "Tristan Davey <tristan@tristandavey.com>",
"constributors": [
"Jason Jacob <jason.jacob@safetyculture.com>",
"Tristan Davey <tristan@tristandavey.com>"
],
"license": "Apache-2.0",
"dependencies": {
"luxon": "^3.4.4"
},
"peerDependencies": {
"joi": ">=16.1.8"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"test-all-versions": "^6.1.0"
}
}