-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 898 Bytes
/
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
{
"name": "bumble-bee",
"version": "0.0.0-pre.8",
"description": "A CLI for transforming data",
"bin": {
"bee": "./bin/cli.js"
},
"repository": {
"url": "https://github.com/imaustink/bumblebee",
"type": "git"
},
"scripts": {
"release:pre": "npm version prerelease && npm publish --tag=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && && npm publish",
"test": "eslint . && ava **/*.test.js",
"preversion": "npm test",
"postversion": "git push --tags && git push"
},
"keywords": [
"CLI",
"transform",
"data",
"json"
],
"author": "Autin Kurpuis",
"license": "MIT",
"dependencies": {
"commander": "^2.11.0",
"inquirer": "^3.2.1"
},
"devDependencies": {
"ava": "^0.22.0",
"eslint": "^4.6.1"
}
}