generated from ts-stack/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "@ts-stack/cors",
"version": "1.4.2",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"imports": {
"#lib/*": "./dist/*"
},
"engines": {
"node": ">= 18.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ts-stack/cors.git"
},
"homepage": "https://github.com/ts-stack/cors",
"description": "Is a node.js package writen in TypeScript, fork of express cors module.",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"test": "tsc -b tsconfig.test.json && yarn esm-jest",
"build-test": "tsc -b tsconfig.test.json",
"esm-jest": "node --experimental-vm-modules --no-warnings=ExperimentalWarning --enable-source-maps ./node_modules/jest/bin/jest.js",
"start": "nodemon test/node-http.ts",
"clean": "rimraf dist*"
},
"keywords": [],
"author": "Troy Goode <[email protected]>",
"license": "MIT",
"dependencies": {
"vary": "^1.1.2"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.28",
"@types/supertest": "^6.0.2",
"@types/vary": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"after": "^0.8.2",
"eslint": "^8.57.0",
"express": "^4.18.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}