-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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-store",
"version": "1.0.0",
"description": "HTTP storage for express",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xodder/http-store.git"
},
"keywords": [],
"author": "Stephen Odebiyi",
"license": "ISC",
"bugs": {
"url": "https://github.com/xodder/http-store/issues"
},
"homepage": "https://github.com/xodder/http-store#readme",
"scripts": {
"prepublish": "tsc",
"lint": "eslint --ext .js,.ts,.tsx"
},
"peerDependencies": {
"@types/express": "^4.17.17",
"express": "^4.17.1"
},
"peerDependenciesMeta": {
"@types/express": {
"optional": true
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "8.30.0",
"eslint-config-next": "13.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1",
"typescript": "4.9.4"
}
}