-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.17 KB
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
{
"name": "token-cli",
"version": "2.1.0",
"description": "This a cli for creating and interacting with keys and JWT tokens",
"main": "./dist/index.js",
"scripts": {
"test:integration": "jest --config=./tests/configurations/integration/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "standard-version",
"test": "npm run test:integration",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json && npm run assets:copy",
"start": "npm run build && cd dist && node ./index.js",
"assets:copy": "copyfiles ./package.json dist",
"clean": "rimraf dist"
},
"directories": {
"test": "tests"
},
"author": "MapColonies",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bin": {
"token-cli": "./dist/index.js"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"ajv": "^8.6.2",
"chalk": "^4.1.2",
"jose": "3.13.0",
"jwk-to-pem": "^2.0.5",
"ora": "^5.4.1",
"yargs": "17.1.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^13.1.0",
"@map-colonies/eslint-config": "^2.2.1",
"@map-colonies/prettier-config": "0.0.1",
"@types/concat-stream": "^1.6.1",
"@types/jest": "^26.0.19",
"@types/jwk-to-pem": "^2.0.1",
"@types/rimraf": "^3.0.2",
"@types/yargs": "^17.0.2",
"commitlint": "^9.1.2",
"copyfiles": "^2.3.0",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^7.8.1",
"husky": "^4.2.5",
"i": "^0.3.6",
"jest": "^26.6.3",
"jest-create-mock-instance": "^1.1.0",
"jest-html-reporters": "^2.0.3",
"npm": "^7.20.6",
"pkg": "^5.3.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"ts-jest": "^26.3.0",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}