-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "route-blocker",
"version": "1.2.1",
"description": "A middleware for expressjs to block or unblock a route",
"author": "Ehtesham Hasnain",
"license": "MIT",
"bugs": {
"url": "https://github.com/ehasnain/route-blocker/issues"
},
"homepage": "https://github.com/ehasnain/route-blocker#readme",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/**"
],
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ehasnain/route-blocker.git"
},
"keywords": [
"expressjs",
"route-blocker",
"route",
"block",
"unblock"
],
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh lib",
"lint": "./scripts/lint.sh",
"prepublishOnly": "yarn && yarn build",
"start": "./scripts/start-example.sh",
"start-watch": "./scripts/start-example-watch.sh",
"test": "yarn test-unit && yarn test-int",
"test-watch": "./scripts/test-watch.sh",
"test-int": "./scripts/test-int.sh",
"test-int-watch": "./scripts/test-int-watch.sh",
"test-unit": "./scripts/test-unit.sh",
"test-unit-watch": "./scripts/test-unit-watch.sh"
},
"peerDependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/express": "^4.17.1",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.10.0",
"eslint-plugin-import": "^2.22.0",
"express": "^4.17.1",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=6"
}
}