-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "http-context-nodejs",
"version": "1.0.0",
"description": "Get and set request-scoped context anywhere, and use it in any framework.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib/**/*"],
"scripts": {
"test": "mocha -r ts-node/register test/*.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yort-feng/http-context-nodejs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yort-feng/http-context-nodejs/issues"
},
"homepage": "https://github.com/yort-feng/http-context-nodejs#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3"
},
"dependencies": {}
}