-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.34 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
66
67
68
69
70
71
72
73
74
75
{
"name": "amqplib-topology",
"version": "2.0.0",
"description": "Generate a RabbitMQ topology with amqplib",
"main": "lib/index.js",
"scripts": {
"lint": "eslint ./src",
"clean": "rm -rf ./lib && rm -rf .nyc_output && rm -rf coverage",
"build": "npm run clean && npm run build:run -- --ignore spec.js",
"build:run": "babel src -d lib --source-maps inline --copy-files",
"build:debug": "npm run clean && npm run build:run",
"test": "npm run coveralls",
"test:run": "NODE_ENV=test mocha --compilers js:babel-register --timeout 5000 -r ./test/helpers/ -R spec",
"test:all": "npm run test:run -- 'src/**/*.spec.js'",
"test:watch": "npm run test:all -- -w",
"cover": "nyc -r text-summary -r html -- npm run test:all",
"coveralls": "nyc npm run test:all && nyc report -r text-lcov | coveralls",
"cover:watch": "nodemon --exec \"npm run cover\" --watch ./src --watch ./test",
"cover:show": "open \"file://$PWD/coverage/index.html\"",
"pretest": "npm run lint",
"prepublish": "npm run build && npm run cover"
},
"dependencies": {
"lodash": "^4.17.2",
"rabbit-topology": "^2.0.0"
},
"devDependencies": {
"amqplib-mocks": "^1.0.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-node6": "^11.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-subset": "^1.3.0",
"coveralls": "^2.11.15",
"eslint": "^3.6.1",
"eslint-config-leankit": "^3.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.0.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"sinon": "^1.14.1",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0"
},
"peerDependencies": {
"amqplib": "^0.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bunk/rabbit-topology.git"
},
"author": "LeanKit",
"bugs": {
"url": "https://github.com/bunk/rabbit-topology/issues"
},
"homepage": "https://github.com/bunk/rabbit-topology#readme",
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"require": [
"babel-register"
],
"all": true,
"sourceMap": false,
"instrument": false
}
}