-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "@parisholley/road-runner",
"author": {
"name": "Paris Holley",
"email": "mail@parisholley.com",
"url": "https://www.parisholley.com"
},
"repository": {
"type": "git",
"url": "https://github.com/parisholley/road-runner.git"
},
"homepage": "https://github.com/parisholley/road-runner",
"keywords": [
"router",
"resolver"
],
"description": "The fastest path resolver for URL routing on modern Node.JS",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"benchmark": "^2.1.4",
"coveralls": "^3.0.6",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"build": "tsc",
"preversion": "npm run build & npm run test",
"publish": "git push --tags",
"test": "jest",
"test-coverage": "rm -rf coverage && jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=6"
},
"version": "1.1.8"
}