-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 874 Bytes
/
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
{
"name": "@trivago/preact-hooks-testing-library",
"description": "preact port of @testing-library/react-hooks",
"version": "1.0.5",
"main": "lib/index.js",
"license": "MIT",
"author": "Carson McKinstry <carson.mckinstry@trivago.com>",
"homepage": "https://github.com/trivago/preact-hooks-testing-library#readme",
"repository": {
"type": "git",
"url": "https://github.com/trivago/preact-hooks-testing-library"
},
"scripts": {
"prepare": "npm run build",
"prebuild": "npm run cleanup; npm t",
"cleanup": "rimraf ./lib",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"jest": "^25",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
},
"peerDependencies": {
"@testing-library/preact": "^1.0.2",
"preact": "^10.4.1"
},
"dependencies": {}
}