generated from klientjs/open-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.04 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.04 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
81
82
83
84
85
86
{
"name": "@klient/testing",
"description": "Toolbox for testing Klient library",
"keywords": [
"axios",
"mock",
"rest",
"jest"
],
"version": "1.1.0",
"license": "MIT",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"open-stack": {
"version": "1.7.0"
},
"repository": {
"url": "https://github.com/klientjs/testing.git",
"type": "git"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"prettier": "prettier src tsconfig.json .release-it.json .prettierrc .eslintrc --check",
"prettier:fix": "prettier src tsconfig.json .release-it.json .prettierrc .eslintrc -l --write",
"test": "jest --passWithNoTests",
"dist": "npm run dist:cjs && npm run dist:esm",
"dist:cjs": "rm -rf dist/cjs && tsc --outDir dist/cjs --module commonjs",
"dist:esm": "rm -rf dist/esm && tsc --outDir dist/esm --module esnext --moduleResolution node",
"pre-commit": "npm run lint:fix && npm run prettier:fix && npm test",
"check": "npm run prettier && npm run lint && npm test",
"update:dependencies": "npm-check-updates --doctorTest \"npm test && npm run dist\"",
"update:open-stack": "open-stack update",
"coverage:badge": "open-stack badge --output .github/badges/coverage.svg --verbose",
"coverage:open": "open coverage/lcov-report/index.html",
"coverage:serve": "npx --yes http-server coverage/lcov-report",
"prepare": "npm run prepare:reset && npm run prepare:husky",
"prepare:reset": "rm -rf .husky && mkdir -p .husky",
"prepare:husky": "npm run prepare:pre-commit && npm run prepare:commit-msg && husky install",
"prepare:pre-commit": "husky add .husky/pre-commit 'npm run check'",
"prepare:commit-msg": "husky add .husky/commit-msg 'npx --no -- commitlint --edit ${1}'",
"release": "release-it"
},
"peerDependencies": {
"axios": "^0.27.0"
},
"dependencies": {
"jsonwebtoken": "~9.0.0",
"jwt-decode": "~3.1.0",
"uuid": "~9.0.0"
},
"devDependencies": {
"@commitlint/cli": "~17.6.1",
"@commitlint/config-conventional": "~17.6.1",
"@klient/open-stack-cli": "latest",
"@release-it/conventional-changelog": "~7.0.1",
"@types/jest": "~27.4.1",
"@types/jsonwebtoken": "~9.0.1",
"@types/node": "~17.0.43",
"@types/uuid": "~9.0.1",
"@typescript-eslint/eslint-plugin": "~5.59.0",
"@typescript-eslint/parser": "~5.59.0",
"auto-changelog": "~2.4.0",
"commitlint": "~17.6.1",
"conventional-changelog-conventionalcommits": "~5.0.0",
"eslint": "~8.17.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-airbnb-typescript": "~17.0.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-unused-imports": "~2.0.0",
"husky": "~8.0.0",
"jest": "~27.5.1",
"npm-check-updates": "~16.10.9",
"prettier": "~2.6.0",
"release-it": "~16.1.5",
"ts-jest": "~27.1.3",
"ts-node": "~10.7.0",
"tsutils": "~3.21.0",
"typescript": "~4.6.2"
}
}