-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jest-react-hooks-mock",
"version": "1.1.0",
"description": "Finally a simple solution to mock react hooks state",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/jest ./src/__tests__/*.test.*",
"lint": "node_modules/eslint/bin/eslint.js ./src/*.ts",
"clean": "rm -rf ./lib",
"build:js": "node_modules/typescript/bin/tsc",
"build:compress": "node_modules/uglify-js/bin/uglifyjs -c -m -o ./lib/index.js -- ./lib/index.js",
"build": "npm run clean && npm run build:js",
"prepublish": "npm run build",
"test:coverage": "npm test -- --coverage",
"coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls"
},
"files": [
"lib"
],
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/victor95pc/jest-react-hooks-mock.git"
},
"keywords": [
"javascript",
"jest",
"testing",
"test utils",
"react",
"reactjs",
"react hooks",
"hooks",
"mock",
"state"
],
"peerDependencies": {
"jest": ">=22.0.0",
"react": ">=16.8.0"
},
"author": "Victor Palomo de Castro",
"license": "MIT",
"bugs": {
"url": "https://github.com/victor95pc/jest-react-hooks-mock/issues"
},
"homepage": "https://github.com/victor95pc/jest-react-hooks-mock#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
"@testing-library/react": "^8.0.1",
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@typescript-eslint/eslint-plugin": "^1.10.1",
"@typescript-eslint/parser": "^1.10.1",
"babel-jest": "^24.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"core-js": "^2.6.5",
"coveralls": "^3.0.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"react": ">=16.8.0",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1",
"uglify-js": "^3.6.0"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {}
}