-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.75 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@goparrot/chowly-api-client",
"version": "0.0.7",
"description": "Typescript library which implements Chowly API",
"engines": {
"node": ">=12"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/goparrot/chowly-api-client.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS && npm run pre-commit",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.{ts,tsx,json,js,jsx}": [
"npm run format:base"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"commit": "git-cz",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"coverage": "jest --coverage",
"build:dist": "rm -rf dist/* && tsc --project tsconfig.build.json",
"remark": "remark README.md CHANGELOG.md CONTRIBUTING.md CODE_OF_CONDUCT.md .github/ -o -f -q && git add .",
"lint": "npm run lint:base -- '.'",
"lint:base": "npm run lint:config:check && eslint --ignore-path .gitignore --ext .ts,.tsx,.json,.js,.jsx",
"lint:config:check": "eslint --print-config src/index.ts | eslint-config-prettier-check",
"format": "npm run format:base -- '.'",
"format:base": "npm run lint:base -- --fix",
"format:staged": "git add . && lint-staged",
"pre-commit": "git add . && npm run format:staged && npm run lint && npm run coverage && npm run build:dist",
"prepublishOnly": "echo \"use 'npm run publish'\" && exit 1",
"publish": "npm run build:dist && node bin/prepublish.js && npm publish dist",
"publish:dev": "npm run publish --tag dev",
"publish:dev:dry": "npm run publish:dev --dry-run",
"version": "echo \"use 'npm run release'\" && exit 1",
"release": "standard-version && git push && git push --tags && npm run publish && npm run github-release",
"release:dry": "npm run publish:dev:dry && standard-version --dry-run"
},
"author": "GoParrot",
"license": "MIT",
"peerDependencies": {
"axios": ">=0.21.1",
"axios-retry": "^3.1.9",
"deepmerge": "^3.2.0 || ^4.0.0",
"class-transformer": ">=0.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"@types/chai": "^4.2.11",
"@types/jest": "^25.2.1",
"@types/node": "^12.12.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"axios": "^0.21.1",
"axios-mock-adapter": "^1.19.0",
"axios-retry": "3.1.9",
"chai": "^4.2.0",
"class-transformer": "^0.3.1",
"commitizen": "^4.1.2",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"remark-frontmatter": "^2.0.0",
"remark-github": "^9.0.0",
"remark-lint-emphasis-marker": "^2.0.0",
"remark-lint-strong-marker": "^2.0.0",
"standard-version": "^8.0.0",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}