forked from Jimbly/timezone-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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": "ebx-timezone-mock",
"version": "1.1.4",
"description": "A JavaScript library which mocks the Date object and lets you specify a local date/time/timezone in order to enable consistent testing of date/time-related code independently of your local system time settings.",
"main": "TimezoneMock.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --fix \"src/**/*.js\" --max-warnings 0",
"test": "node_modules/.bin/babel-tape-runner test/**/*.js",
"test:only": "node_modules/.bin/babel-tape-runner"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebx/ebx-timezone-mock.git"
},
"keywords": [
"mock",
"date",
"time",
"timezone"
],
"author": "Jimb Esser (https://github.com/Jimbly/)",
"license": "MIT",
"contributors": [
"Andy Neale (https://github.com/ebx) <andy@echobox.com>"
],
"bugs": {
"url": "https://github.com/ebx/ebx-timezone-mock/issues"
},
"homepage": "https://github.com/ebx/ebx-timezone-mock#readme",
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"gulp": "^4.0.0",
"gulp-uglify": "^3.0.0",
"prettier": "^1.12.1",
"run-sequence": "^2.2.1",
"tape": "^4.9.0",
"tape-catch": "^1.0.6"
},
"dependencies": {
"moment-timezone": "^0.5.16"
}
}