-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "choker",
"version": "0.2.0",
"description": "Rate limiter, async",
"keywords": [
"limiter",
"rate",
"rate-limiter",
"throttle"
],
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ignore-path .gitignore ./**/*.js",
"lint:staged": "lint-staged",
"test": "ava",
"test:coverage": "nyc ava -v",
"test:watch": "ava -vw",
"preversion": "npm run lint && npm run test",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/despan/choker.git"
},
"author": "Mushegh Antaranyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/despan/choker/issues"
},
"homepage": "https://github.com/despan/choker#readme",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"ava": "^2.4.0",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"get-port": "^5.0.0",
"http-errors": "^1.7.3",
"husky": "^3.0.9",
"koa": "^2.11.0",
"koa-router": "^7.4.0",
"lint-staged": "^9.4.2",
"node-fetch": "^2.6.0",
"nyc": "^14.1.1",
"pretty-hrtime": "^1.0.3",
"random-normal": "^1.0.0"
},
"dependencies": {
"daggy": "^1.4.0",
"debug": "^4.1.1",
"delay": "^4.3.0",
"ramda": "^0.26.1"
}
}