-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
77 lines (77 loc) · 2.14 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": "rabbitmq-pub-sub",
"version": "0.2.5",
"description": "RabbitMq Producer and Consumer",
"main": "./dist/main.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run build",
"jest": "./node_modules/.bin/jest",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:notify": "npm run test:watch -- --notify",
"coverage": "npm test -- --coverage",
"coverage:notify": "npm run coverage -- --watch --notify",
"start": "npm run build && node dist/main.js",
"start:watch": "concurrently \"npm run build:watch\" \"node-dev dist/main.js\"",
"preupver": "npm test",
"upver": "standard-version"
},
"keywords": [
"typescript",
"rabbitmq"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/amqplib": "^0.5.1",
"@types/bunyan": "0.0.35",
"amqplib": "^0.5.1"
},
"devDependencies": {
"@types/bluebird": "^3.0.37",
"@types/es6-shim": "^0.31.32",
"@types/jest": "^18.1.1",
"@types/node": "^7.0.5",
"@types/promises-a-plus": "0.0.27",
"@types/sinon": "^1.16.34",
"@types/superagent": "^2.0.36",
"@types/supertest": "^2.0.0",
"@types/when": "^2.4.28",
"awesome-typescript-loader": "^3.0.0-beta.19",
"bluebird": "^3.3.5",
"bunyan": "^1.8.5",
"cdm-logger": "^0.3.2",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"sinon": "^1.17.7",
"ts-jest": "^18.0.2",
"tslint": "^4.4.2",
"tslint-loader": "^3.3.0",
"typescript": "^2.1.5",
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"homepage": "https://github.com/cdmbase/rabbitmq-pubsub",
"repository": {
"type": "git",
"url": "git://git@github.com:cdmbase/rabbitmq-pubsub.git"
},
"bugs": {
"url": "https://github.com/cdmbase/rabbitmq-pubsub/issues"
}
}