-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 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
57
{
"name": "youarei",
"version": "2.0.0-alpha.1",
"description": "A composable and fully typed libary for working with query strings and paths.",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/purge/youarei"
},
"bugs": {
"url": "https://github.com/purge/youarei/issues"
},
"homepage": "https://github.com/purge/youarei#readme",
"sideEffects": false,
"keywords": [
"uri",
"url",
"query",
"querystring",
"qs",
"search",
"router"
],
"author": "Simon Elliott",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@types/ramda": "^0.26.44",
"jest": "^25.1.0",
"lodash": "^4.17.15",
"ramda": "^0.27.0",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"type-coverage": "^2.4.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"mem": "^6.0.1"
},
"scripts": {
"test": "type-coverage && jest src",
"build": "tsc --build tsconfig.json"
},
"typeCoverage": {
"atLeast": 100
},
"husky": {
"hooks": {
"pre-commit": "type-coverage"
}
}
}