-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 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
{
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/history": "^4.7.2",
"@types/node": "^11.9.4",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"history": "^4.7.2",
"nyc": "^15.1.0",
"prop-types": "^15.6.0",
"sarg": "^4.0.6",
"sinon": "^7.2.4",
"ts-node": "^8.10.2",
"tslint": "^5.11.0",
"typescript": "^3.9.5",
"utility-types": "^3.4.1"
},
"keywords": [
"history",
"routing",
"router",
"route",
"react",
"simple",
"lightweight"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"name": "halter",
"description": "Simple and lightweight but robust router for your web application",
"version": "2.5.7",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/VictorQueiroz/halter.git"
},
"dependencies": {
"tslib": "^2.0.0"
},
"scripts": {
"prepublish": "npx tsc --skipLibCheck",
"test": "npx sarg --require ts-node/register --bail test/**/*.ts",
"coverage": "npx nyc npx sarg --require ts-node/register --bail test/**/*.ts"
},
"nyc": {
"extension": [
".ts",
".js"
]
},
"author": "Victor Queiroz <victorcqueirozg@gmail.com>"
}