UNPKG

1.66 kBJSONView Raw
1{
2 "name": "amqpuri",
3 "version": "2.0.1",
4 "description": "Create AMQP URIs the node way",
5 "main": "index.js",
6 "files": [
7 "index.js",
8 "lib/"
9 ],
10 "engines": {
11 "node": "> 6.0.0"
12 },
13 "scripts": {
14 "test": "jest",
15 "coverage": "jest --coverage",
16 "report-coverage": "codecov",
17 "lint": "eslint index.js test/ lib/",
18 "validate": "npm-run-all lint coverage",
19 "format": "prettier --write index.js lib/**/*.js test/**/*.js",
20 "precommit": "lint-staged",
21 "prepush": "npm test"
22 },
23 "repository": {
24 "type": "git",
25 "url": "git+https://github.com/nfantone/amqp-uri.git"
26 },
27 "keywords": [
28 "amqp",
29 "uri",
30 "url",
31 "rabbitmq",
32 "activemq",
33 "zmq"
34 ],
35 "author": "Nicolás Fantone <nfantone@gmail.com> (https://github.com/nfantone)",
36 "license": "MIT",
37 "bugs": {
38 "url": "https://github.com/nfantone/amqp-uri/issues"
39 },
40 "homepage": "https://github.com/nfantone/amqp-uri#readme",
41 "devDependencies": {
42 "@types/jest": "^22.2.3",
43 "ajv": "^5.5.2",
44 "codecov": "^3.0.0",
45 "eslint": "^4.19.1",
46 "eslint-config-prettier": "^2.9.0",
47 "eslint-config-semistandard": "^12.0.1",
48 "eslint-config-standard": "^11.0.0",
49 "eslint-plugin-import": "^2.11.0",
50 "eslint-plugin-node": "^6.0.1",
51 "eslint-plugin-prettier": "^2.6.0",
52 "eslint-plugin-promise": "^3.7.0",
53 "eslint-plugin-standard": "^3.1.0",
54 "husky": "^0.14.3",
55 "jest": "^22.4.3",
56 "lint-staged": "^7.0.5",
57 "npm-run-all": "^4.1.2",
58 "prettier": "^1.12.1"
59 },
60 "dependencies": {
61 "lodash.curry": "^4.1.1",
62 "lodash.flowright": "^3.5.0",
63 "lodash.pick": "^4.4.0"
64 }
65}