This repository has been archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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-timezone",
"version": "3.0.0",
"description": "timezone validation for Joi",
"keywords": [
"joi",
"extension",
"timezone",
"checksum",
"validation",
"validator",
"moment",
"mcfly-timezone"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/SafetyCulture/joi-timezone.git"
},
"scripts": {
"test": "NODE_ENV=test mocha --recursive",
"cov": "npm run cov",
"cov:html": "NODE_ENV=test COVERAGE=yes LOG_LEVEL=fatal istanbul cover --report html ./node_modules/.bin/_mocha -- --recursive && open coverage/index.html",
"cov:coveralls": "NODE_ENV=test COVERAGE=yes LOG_LEVEL=fatal istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- --recursive && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./lib/ ./test/ && echo Lint OK",
"clean": "rm -rf node_modules/ && rm -rf coverage",
"posttest": "npm run lint"
},
"author": "SafetyCulture Pty Ltd <info@safetyculture.com> (http://www.safetyculture.com)",
"constributors": [
"Jason Jacob <jason.jacob@safetyculture.com>"
],
"license": "Apache-2.0",
"dependencies": {
"moment-timezone": "^0.5.13"
},
"peerDependencies": {
"@hapi/joi": ">=15.0.3"
},
"devDependencies": {
"@hapi/joi": "^15.0.3",
"chai": "^4.1.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^6.1.4"
}
}