-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 957 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
33
34
35
36
37
{
"name": "@postlight/use-search-params",
"private": true,
"version": "0.0.1",
"authors": [
"Adam Pash <[email protected]>",
"Zachary Golba <[email protected]>"
],
"license": "(Apache 2.0 OR MIT)",
"repository": {
"type": "git",
"url": "https://github.com/postlight/use-search-params.git"
},
"main": "dist/lib.js",
"module": "dist/lib.mjs",
"types": "dist/lib.d.ts",
"scripts": {
"build": "scripts/build",
"clean": "rm -rf coverage dist",
"format": "prettier --config .prettierrc --write src/*.ts",
"test": "jest --passWithNoTests"
},
"devDependencies": {
"@types/history": "4.7.5",
"@types/jest": "25.2.1",
"@types/react": "16.9.34",
"@types/react-router-dom": "5.1.5",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react-router-dom": "^5.0.0",
"react": "^16.0.0"
}
}