forked from alykoshin/express-queue
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 2.54 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
{
"name": "express-queue",
"version": "0.0.12",
"description": "Express middleware to limit a number of simultaneously processing requests using queue",
"main": "./index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"nsp": "nsp check",
"_deps-check": "npm-check-updates --error-level 2",
"_deps-update": "echo '* Updating packages versions... '; npm-check-updates -u --upgradeAll --error-level 1 && npm install",
"_check-changes": "echo '* Checking if git directory is clean... '; bash -c '[[ -z $(git status -uno --porcelain) ]]'",
"update-deps": "npm run _check-changes && npm run _deps-update && npm test && git commit -am 'updated deps'",
"lint": "eslint -f unix .",
"inspect": "jsinspect",
"pretest": "npm run lint && npm run inspect && npm run nsp && npm run _deps-check",
"__test": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"test": "npm run _test",
"_test": "echo \"Warning: no test specified\" && exit 0",
"___test": "echo \"Error: no test specified\" && exit 1",
"test-travis": "npm run _test",
"_commit": "git commit -am \"commit by 'npm run commit'\"",
"_push": "git push --follow-tags",
"commit-and-push": "npm run _commit && npm test && npm run _push",
"_patch-release": "npm version patch && npm publish",
"_minor-release": "npm version minor && npm publish",
"_major-release": "npm version major && npm publish",
"patch-release": "npm test && npm run _patch-release && npm run _push",
"minor-release": "npm test && npm run _minor-release && npm run _push",
"__major-release": "npm test && npm run _major-release && npm run _push",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"express,middleware,mw,queue,limit,delay,simultaneous"
],
"author": "Alexander <alykoshin@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alykoshin/express-queue.git"
},
"bugs": {
"url": "https://github.com/alykoshin/express-queue/issues"
},
"homepage": "https://github.com/alykoshin/express-queue",
"dependencies": {
"debug": "^3.1.0",
"express-end": "0.0.8",
"mini-queue": "0.0.14"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"express": "^4.16.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"jsinspect": "^0.12.7",
"mocha": "^5.0.0",
"mockery": "^2.1.0",
"sinon": "^4.2.2"
}
}