-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.64 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
{
"name": "jest-react-hooks-shallow",
"version": "1.5.1",
"description": "React Hooks for shallow rendering",
"homepage": "https://github.com/mikeborozdin/jest-react-hooks-shallow",
"repository": {
"type": "git",
"url": "https://github.com/mikeborozdin/jest-react-hooks-shallow"
},
"main": "lib/enable-hooks.js",
"scripts": {
"build": "tsc",
"test:unit": "jest",
"test:e2e:with-mocking-by-default": "cd samples-and-e2e-tests/with-mocking-by-default && npm i && npm test && cd ../..",
"test:e2e:without-mocking-by-default": "cd samples-and-e2e-tests/without-mocking-by-default && npm i && npm test && cd ../..",
"test:e2e:cra-with-mocking-by-default": "cd samples-and-e2e-tests/cra-with-mocking-by-default && npm i && npm test && cd ../..",
"test:e2e:cra-without-mocking-by-default": "cd samples-and-e2e-tests/cra-without-mocking-by-default && npm i && npm test && cd ../..",
"test:e2e": "npm run test:e2e:with-mocking-by-default && npm run test:e2e:with-mocking-by-default && npm run test:e2e:without-mocking-by-default",
"test": "npm run test:unit && npm run test:e2e",
"lint": "eslint ./src/**/*.ts"
},
"author": "Mike Borozdin <[email protected]>",
"license": "ISC",
"keywords": [
"react",
"hooks",
"react hooks",
"shallow",
"testing",
"enzyme",
"mock",
"jest"
],
"devDependencies": {
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"react": "^16.8.0"
}
}