-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "jest-mock-now",
"version": "1.3.0",
"description": "Date.now() as deterministic Jest mock function.",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"prettier": "prettier '**/*.{js,json}'",
"prettier:fix": "yarn prettier --write",
"test": "jest"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattiaerre/jest-mock-now.git"
},
"keywords": [
"date",
"jest",
"mock",
"now"
],
"author": {
"name": "Mattia Richetto",
"email": "[email protected]",
"url": "https://mattiaerre.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mattiaerre/jest-mock-now/issues"
},
"homepage": "https://github.com/mattiaerre/jest-mock-now#readme",
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"jest-cli": "^25.1.0",
"lint-staged": "^8.1.0",
"prettier": "^1.19.1"
},
"jest": {
"setupFiles": [
"./setup-jest.js"
]
},
"contributors": [
{
"name": "danigb",
"email": "[email protected]",
"url": "https://github.com/danigb"
}
]
}