-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.25 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
{
"name": "tasqu",
"version": "0.1.0",
"description": "Trivial async queue",
"main": "./index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"raw-test": "node_modules/.bin/_mocha",
"docs": "./node_modules/.bin/jsdoc -c ./.jsdocrc -r -R ./README.md -d ../../gh-pages/tasqu/ src/",
"codeclimate": "docker run --rm --env CODECLIMATE_CODE=\"$PWD\" --volume \"$PWD\":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze -f html > codeclimate.html"
},
"repository": {
"type": "git",
"url": "https://github.com/alexandrajs/tasqu"
},
"keywords": [
"async",
"queue"
],
"engines": {
"node": ">=8.0.0"
},
"author": "Michał Żaloudik <ponury.kostek@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexandrajs/tasqu/issues"
},
"homepage": "https://github.com/alexandrajs/tasqu#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^3.0.2",
"ink-docstrap": "^1.3.2",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}