-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.65 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
{
"name": "@clarketm/jwt-cli",
"version": "1.2.0",
"description": "Command line tool for working with JSON Web Tokens (JWT)",
"engines": {
"node": ">=8.11.2"
},
"main": "./lib/jwt.js",
"bin": {
"jwt": "./bin/jwt.js"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE.md"
],
"scripts": {
"prettier": "prettier --write '**/*.{js,json,css,md}'",
"lint": "eslint --fix ./bin ./lib",
"prep": "yarn lint && yarn prettier && yarn test",
"test": "jest",
"test:watch": "yarn test --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/clarketm/jwt-cli.git"
},
"keywords": [
"jwt",
"jsonwebtoken",
"cli",
"command-line",
"command line",
"cl",
"terminal",
"node"
],
"author": "Travis Clarke <travis.m.clarke@gmail.com> (https://www.travismclarke.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/clarketm/jwt-cli/issues"
},
"homepage": "https://github.com/clarketm/jwt-cli#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^2.4.1",
"clipboardy": "^1.2.3",
"commander": "^2.15.1",
"jsonwebtoken": "^8.2.1"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/shelljs": "^0.8.0",
"eslint": "^4.19.1",
"husky": "^1.0.0-rc.7",
"jest": "^23.0.0",
"lint-staged": "^7.1.2",
"prettier": "^1.12.1",
"shelljs": "^0.8.2"
}
}