-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 744 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 744 Bytes
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
{
"name": "typescript-safe-router",
"version": "1.0.2",
"description": "A type-safe router for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --compilers ts:ts-node/register test/test.ts"
},
"keywords": [
"typescript",
"router"
],
"author": "Simon Van Casteren",
"license": "LGPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/FrigoEU/typescript-safe-router"
},
"devDependencies": {
"@types/lodash": "^4.14.74",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.26",
"jsverify": "^0.8.2",
"lodash": "^4.17.4",
"mocha": "^3.5.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
}
}