-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 946 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 946 Bytes
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
{
"name": "flower-password-cli",
"version": "2.0.0",
"description": "The FlowerPassword.js command line utility.",
"bin": {
"fpcode": "app.js"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xlsdg/flower-password-cli.git"
},
"keywords": [
"flower password",
"password",
"huami",
"fpcode"
],
"author": "xLsDg",
"license": "MIT",
"bugs": {
"url": "https://github.com/xlsdg/flower-password-cli/issues"
},
"homepage": "https://github.com/xlsdg/flower-password-cli#readme",
"dependencies": {
"chalk": "^2.4.1",
"cliparoo": "^1.1.1",
"inquirer": "^6.2.1",
"node-flower-password": "^2.0.0",
"yargs": "^12.0.5"
}
}