-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 963 Bytes
/
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
{
"name": "reqlim",
"version": "0.0.0",
"main": "lib/middleware.js",
"license": "MIT",
"description": "Connect/Express middleware to limit requests",
"repository": "jsless/reqlim.git",
"contributes": [
"Pooya Parsa <[email protected]>"
],
"scripts": {
"lint": "eslint lib",
"test": "npm run lint && npm run jest",
"jest": "jest",
"release": "standard-version && git push --follow-tags && npm publish",
"prepare": "npm run test"
},
"files": [
"lib"
],
"dependencies": {
"consola": "^2.4.0"
},
"devDependencies": {
"axios": "^0.18.0",
"codecov": "^3.1.0",
"connect": "^3.6.6",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"standard-version": "^4.4.0"
}
}