-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "node-amqp",
"version": "1.2.1",
"description": "a wrap upon amqplib",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/wouldgo/node-amqp"
},
"scripts": {
"lint": "eslint -c .eslintrc index.js && jshint -c .jshintrc --reporter=unix index.js && jscs -c .jscsrc index.js",
"precommit": "npm run-script lint && npm test",
"preversion": "npm run-script lint && npm test",
"version": "git add -A .",
"postversion": "git push && git push --tags",
"test": "lab --debug --verbose --colors spec/*.js"
},
"author": {
"name": "Dario Andrei",
"email": "[email protected]",
"url": "https://github.com/wouldgo"
},
"contributors": [
{
"name": "Filippo Oretti",
"email": "[email protected]",
"url": "https://github.com/45kb"
}
],
"license": "MIT",
"dependencies": {
"amqplib": "^0.4.0"
},
"devDependencies": {
"code": "^2.1.0",
"eslint": "^1.10.3",
"husky": "^0.10.2",
"jscs": "^2.8.0",
"jshint": "^2.8.0",
"lab": "^8.2.0"
}
}