-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "express-set-headers-mw",
"version": "1.0.3",
"description": "Express middleware to set headers ",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"build": "rimraf built && tsc",
"tslint": "tslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prepare": "husky install",
"prepublishOnly": "npm run tslint && npm test && npm run build"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"babel-jest": "^25.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-mock-req-res": "^1.0.2",
"rimraf": "^3.0.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"repository": {
"type": "git",
"url": "https://github.com/Ninad89/express-headers-setter.git"
},
"bugs": "https://github.com/Ninad89/express-headers-setter/issues",
"homepage": "https://ninad89.github.io/express-headers-setter/",
"keywords": [
"express",
"middleware",
"headers",
"response",
"request",
"copy"
],
"files": [
"built"
],
"author": "Ninad Mahajan",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"express": "^4.17.2"
}
}