-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
92 lines (92 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@leapfrogtechnology/async-store",
"version": "2.1.0",
"description": "Global store utility for an async operation lifecycle and chain of callbacks",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/leapfrogtechnology/async-store"
},
"bugs": {
"url": "https://github.com/leapfrogtechnology/async-store/issues"
},
"scripts": {
"transpile": "tsc",
"clean": "rimraf dist",
"build": "NODE_ENV=production yarn clean && yarn transpile",
"test": "NODE_ENV=test nyc mocha --recursive test/**/*.test.ts",
"watch": "tsc --watch",
"prettify": "prettier --single-quote --trailing-comma none --print-width 120 --write './**/*.{ts,js,yml}'",
"prepublishOnly": "yarn build",
"changelog": "./release.sh changelog",
"release": "./release.sh bump"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "tsc --noEmit"
}
},
"lint-staged": {
"*.{ts,js,yml}": [
"prettier --single-quote --trailing-comma none --print-width 120 --write './**/*.{ts,js,yml}'"
]
},
"keywords": [
"typescript",
"javascript",
"node",
"async",
"store",
"thread-local-storage",
"local-storage",
"async-storage",
"request-context",
"context",
"callback-context"
],
"authors": [
"Kabir Baidhya <kabirbaidhya@gmail.com>",
"Sagar Chamling <sagarchamling@lftechnology.com>"
],
"dependencies": {
"debug": "4.3.4",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.3",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.17",
"@types/lodash.merge": "^4.6.7",
"@types/mocha": "^10.0.1",
"@types/node": "^14.17.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"fastify": "^4.16.3",
"husky": "^8.0.3",
"lint-staged": "13.2.2",
"mocha": "^10.2.0",
"node-mocks-http": "^1.12.2",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"express": ">= 4.17.0",
"fastify": ">= 3.10.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 14.17.0"
}
}