-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.28 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
78
79
80
81
82
83
84
{
"name": "totp-cli",
"version": "3.0.0",
"description": "Insert/Generate a TOTP for a service from pass",
"main": "src",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier-standard 'src/**/*.js'",
"prepublish": "npm run lint -s && npm run format -s",
"precommit": "lint-staged",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
},
"engines": {
"node": ">=8"
},
"bin": {
"totp": "src/totp.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/lgaticaq/node-totp-cli.git"
},
"keywords": [
"totp",
"pass",
"cli"
],
"author": "Leonardo Gatica <[email protected]> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgaticaq/node-totp-cli/issues"
},
"homepage": "https://github.com/lgaticaq/node-totp-cli#readme",
"dependencies": {
"chalk": "2.4.2",
"commander": "2.20.3",
"copy-paste": "1.3.0",
"inquirer": "4.0.2",
"notp": "2.0.3",
"thirty-two": "1.0.2",
"update-notifier": "2.5.0"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"generate-changelog": "1.8.0",
"husky": "0.14.3",
"lint-staged": "7.3.0",
"prettier-standard": "8.0.1"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"no-console": [
"error"
]
}
},
"eslintIgnore": [
"coverage"
],
"lint-staged": {
"linters": {
"src/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
}
},
"renovate": {
"automerge": "minor",
"extends": [
":library"
]
}
}