-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.96 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
{
"name": "beanstalkd",
"version": "2.2.5",
"description": "A beanstalkd client for Node.js with promises",
"main": "lib/client.js",
"dependencies": {
"babel-runtime": "^5.8.25",
"beanstalkd-protocol": "^1.0.1",
"bluebird": "^3.4.7",
"debug": "^2.2.0",
"js-yaml": "^3.13.1",
"lodash.camelcase": "^4.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-async-to-bluebird": "^1.1.0",
"babel-preset-es2015-node4": "^2.1.1",
"babel-register": "^6.18.0",
"chai": "^2.3.0",
"chai-as-promised": "^5.0.0",
"chai-datetime": "^1.4.0",
"eslint": "^4.18.2",
"istanbul": "^0.3.18",
"mocha": "^2.2.1",
"publish": "^0.5.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.8.0"
},
"options": {
"mocha": "--require scripts/mocha-bootload --check-leaks --colors --reporter spec"
},
"scripts": {
"prepublish": "npm run check && npm run build",
"check": "npm run lint && npm run test:unit",
"lint": "eslint src",
"build": "rm -rf lib/* && babel src -d lib",
"cover": "NODE_PATH=src NODE_ENV=test istanbul cover _mocha -- $npm_package_options_mocha test/unit/*.test.js test/unit/**/*.test.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "NODE_PATH=src NODE_ENV=test mocha $npm_package_options_mocha test/unit/*.test.js test/unit/**/*.test.js",
"test:integration": "docker-compose run client /bin/sh -c \"npm run test:integration:raw\"",
"test:integration:raw": "NODE_ENV=test mocha $npm_package_options_mocha test/integration/*.test.js test/integration/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/burstable/node-beanstalkd-client.git"
},
"keywords": [
"beanstalkd"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/burstable/node-beanstalkd-client/issues"
},
"homepage": "https://github.com/burstable/node-beanstalkd-client#readme"
}