-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "express-unless",
"description": "Conditionally add a middleware to express with some common patterns.",
"version": "2.1.3",
"license": "MIT",
"repository": {
"url": "git://github.com/jfromaniello/express-unless.git"
},
"author": {
"name": "José F. Romaniello",
"email": "jfromaniello@gmail.com",
"url": "http://joseoncode.com"
},
"files": [
"/dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"prepare": "npm run build",
"test": "mocha -R spec --require ts-node/register test/**",
"lint": "eslint --fix --ext .ts ./src"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"express": "^4.18.1",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}