-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "bunny-migrate",
"version": "1.3.2",
"description": "CLI tool for managing RabbitMQ schema instances",
"license": "MIT",
"author": "Roman Kaspar <[email protected]>",
"contributors": [
"Jan Dolezel <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/salsita/bunny-migrate"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"babel": "babel *.js --out-dir dist --source-maps inline",
"gen-ver": "printf \"// generated code, please see package.json\nexport default {\n name: '%s',\n number: '%s'\n}\n\" ${npm_package_name} ${npm_package_version} > version.js",
"lint": "eslint *.js",
"prebuild": "rimraf dist",
"build": "npm run gen-ver && npm run lint && rm -rf dist && npm run babel",
"prepare": "npm run build"
},
"bin": {
"bunny-migrate": "bin/bunny-migrate"
},
"keywords": [
"rabbitmq",
"amqp",
"schema",
"instance",
"instances",
"migrate",
"migration",
"migration-tool",
"zero-downtime"
],
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-standard": "4.1.0",
"rimraf": "3.0.2"
},
"dependencies": {
"amqplib": "^0.8.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"winston": "^3.2.1"
}
}