-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 827 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 827 Bytes
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
{
"name": "node-context-storage",
"version": "1.0.4",
"description": "Global context storage in node & express.js",
"type": "module",
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/paripsky/node-context-storage.git"
},
"keywords": ["node", "context", "storage", "express"],
"author": "paripsky",
"license": "MIT",
"files": ["dist/**", "src/**"],
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"typescript": "^4.9.4"
},
"main": "./dist/esm/index.js",
"types": "./src/index.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
}