-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "@lottojs/cors",
"version": "0.2.5",
"description": "Custom HTTP CORS middleware to manage Cross-Origin Resource Sharing (CORS) headers and methods",
"author": "Pedro Harbs <harbspj@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"types": "lib/index.d.ts",
"keywords": [
"nodejs",
"http",
"cors",
"typescript",
"lottojs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lottojs/cors.git"
},
"bugs": {
"url": "https://github.com/lottojs/cors/issues"
},
"homepage": "https://github.com/lottojs/cors#readme",
"scripts": {
"build": "tsc && tscpaths -p ./tsconfig.json -s src -o lib",
"lint": "eslint src --ext .ts --fix",
"prepare": "husky install"
},
"devDependencies": {
"@lottojs/eslint-config": "^0.2.0",
"@lottojs/ts-config": "^0.2.0",
"eslint": "^8.48.0",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.1.6",
"validate-branch-name": "^1.3.0"
},
"lint-staged": {
"src/**/*": "npm run lint"
},
"validate-branch-name": {
"pattern": "^(master|main|develop){1}$|^(feat|fix|imp|release)\/.+$"
}
}