-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "typesafe-react-router",
"version": "2.2.4",
"description": "Type-safe helpers for React-Router",
"main": "./dest/index.js",
"types": "./dest/index.d.ts",
"files": [
"dest"
],
"contributors": [
{
"name": "Kevin Saldaña",
"email": "[email protected]",
"url": "https://github.com/ksaldana1"
},
{
"name": "Erin Noe-Payne",
"email": "[email protected]",
"url": "https://github.com/autoric"
}
],
"license": "Apache-2.0",
"scripts": {
"tsc": "tsc --declaration -outDir dest",
"clean": "rm -rf dest",
"prepare": "npm run clean && npm run tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.1.1",
"@types/query-string": "^5.1.0",
"jest": "^23.2.0",
"ts-jest": "^22.4.6",
"typescript": "^3.0.1"
},
"peerDependencies": {
"typescript": "^3.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"query-string": "^5.1.1"
}
}