-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
89 lines (89 loc) · 2.96 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
{
"name": "@qiwi/semantic-release-gh-pages-plugin",
"version": "5.4.2",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "gh-pages publishing plugin for semantic-release",
"keywords": [
"gh-pages",
"ghpages",
"github pages",
"semantic-release",
"semantic release"
],
"main": "target/es5/index.js",
"types": "typings/index.d.ts",
"typescript": {
"definition": "typings/index.d.ts"
},
"scripts": {
"clean": "rimraf target flow-typed typings docs coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "yarn lint --fix",
"test": "npm-run-all -p -l lint test:unit test:depcheck",
"test:unit": "jest --config=jest.config.json --detectOpenHandles --forceExit",
"test:deps": "npm-run-all -p -l test:depcheck test:depaudit",
"test:depcheck": "npx depcheck --ignores rimraf,mkdirp,typedoc,tslib,@swissquote/crafty-preset-jest,@types/jest,semantic-release",
"test:depaudit": "yarn audit --level=moderate --groups=dependencies; [[ $? -ge 4 ]] && exit 1 || exit 0",
"test:depauditfix": "npm_config_yes=true npx yarn-audit-fix --audit-level=moderate",
"build": "yarn clean && npm-run-all -p -l build:es5 build:es6 build:ts build:libdef docs",
"build:es5": "mkdirp target/es5 && tsc -p tsconfig.es5.json",
"build:es6": "mkdirp target/es6 && tsc -p tsconfig.es6.json",
"build:ts": "cpy src/main/ts/ target/ts/ --flat",
"build:libdef": "libdefkit --tsconfig=tsconfig.es5.json --tsconfig=tsconfig.es6.json",
"docs": "typedoc src/main/ts",
"postupdate": "yarn && npm_config_yes=true npx yarn-audit-fix && yarn test:deps && yarn build && yarn test",
"publish:beta": "npm publish --no-git-tag-version --tag beta"
},
"files": [
"README.md",
"CHANGELOG.md",
"target",
"typings",
"flow-typed"
],
"dependencies": {
"@qiwi/substrate-types": "^2.1.0",
"aggregate-error": "^3.1.0",
"debug": "^4.4.0",
"gh-pages": "^6.2.0",
"git-url-parse": "^16.0.0",
"lodash": "^4.17.21",
"queuefy": "^1.2.1",
"read-pkg": "^5.2.0",
"then-request": "^6.0.2",
"tslib": "^2.8.1",
"zurk": "^0.10.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/git-url-parse": "^9.0.3",
"@types/semantic-release": "^20.0.6",
"@types/gh-pages": "^6.1.0",
"@types/lodash": "^4.17.13",
"@qiwi/libdefkit": "6.1.4",
"@qiwi/npm-run-all": "^4.1.7",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"cpy-cli": "^5.0.0",
"mkdirp": "^3.0.1",
"rimraf": "^6.0.0",
"ts-jest": "^29.2.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-qiwi": "^2.1.3",
"typedoc": "^0.27.3",
"typescript": "5.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/qiwi/semantic-release-gh-pages-plugin.git"
},
"bugs": {
"url": "https://github.com/qiwi/semantic-release-gh-pages-plugin/issues"
},
"author": "Anton Golub <mailbox@antongolub.ru>",
"license": "MIT"
}