forked from Bunk/amqplib-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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
76
77
{
"name": "amqplib-mocks",
"version": "1.3.0",
"description": "Simple amqplib mocking library",
"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 --require babel-core/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 && npm run build\" --watch ./src --watch ./test",
"cover:show": "open \"file://$PWD/coverage/index.html\"",
"pretest": "npm run lint",
"preversion": "npm run cover",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepublish": "publish-please guard",
"publish-please": "publish-please"
},
"dependencies": {
"lodash": "^4.17.2",
"shortid": "^2.2.6",
"sinon": "^4.1.6"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^8.2.1",
"babel-plugin-istanbul": "^4.1.5",
"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": "^4.1.2",
"chai-as-promised": "^7.1.1",
"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": "^5.0.0",
"nodemon": "1.14.11",
"nyc": "^11.4.1",
"publish-please": "^2.3.1",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bunk/amqplib-mocks.git"
},
"author": "LeanKit",
"bugs": {
"url": "https://github.com/bunk/amqplib-mocks/issues"
},
"homepage": "https://github.com/bunk/amqplib-mocks#readme",
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"require": [
"babel-register"
],
"all": true,
"sourceMap": false,
"instrument": false
}
}