-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@testing-library/preact-hooks",
"description": "Simple and complete React hooks testing utilities that encourage good testing practices.",
"version": "1.1.0",
"main": "lib/index.js",
"license": "MIT",
"author": "Carson McKinstry <[email protected]>",
"keywords": [
"testing",
"preact",
"hooks",
"unit",
"integration"
],
"homepage": "https://github.com/testing-library/preact-hooks-testing-library#readme",
"repository": {
"type": "git",
"url": "https://github.com/testing-library/preact-hooks-testing-library"
},
"scripts": {
"prepare": "npm run build",
"prebuild": "npm run cleanup; npm t",
"cleanup": "rimraf ./lib",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@testing-library/preact": "^2.0.0",
"@types/jest": "^25.2.2",
"jest": "^25",
"preact": "^10.4.8",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
},
"peerDependencies": {
"@testing-library/preact": "^2.0.0",
"preact": "^10.4.8"
},
"dependencies": {}
}