-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "restify-router-config",
"version": "1.2.0-alpha.0",
"description": "The laziest way to route your restify app.",
"main": "dist/index.min.js",
"types": "dist/src/router.d.ts",
"scripts": {
"test": "nyc --check-coverage --lines 10 mocha -r ts-node/register test/**.test.ts",
"rollup": "rollup -c",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run rollup"
},
"keywords": [
"restify",
"restify-router",
"express",
"express-router-config",
"express-router",
"router",
"config",
"react",
"inspired"
],
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.0",
"@types/restify": "^7.2.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^4.0.0",
"ts-node": "^6.0.3",
"typescript": "^2.8.3",
"uglify-js": "^3.3.25"
}
}