This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.39 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
{
"$schema": "http://json.schemastore.org/package",
"name": "cordis",
"version": "1.2.0",
"description": "A modular, micros-service based Discord API wrapper",
"scripts": {
"build": "pnpm recursive run build --filter @cordis/*",
"docs": "typedoc",
"lint": "pnpm recursive run lint --filter @cordis/*",
"lint:ci": "pnpm lint --parallel --filter @cordis/*",
"test": "jest",
"test:ci": "jest --ci --no-stack-trace --verbose",
"cleanup": "rimraf \"*/*/?(dist|types)/**\" && pnpm run build && pnpm run lint && pnpm run test:ci",
"release:npm": "pnpm recursive publish --no-git-checks --access public --filter @cordis/* --filter=!./services",
"release:npm-next": "pnpm recursive publish --no-git-checks --access public --tag next --filter @cordis/* --filter=!./services",
"release:docker": "docker build -t cordislib/gateway:$(jq --raw-output '.version' package.json) && docker push cordislib/gateway:$(jq --raw-output '.version' package.json)",
"release:docker-next": "docker build -t cordislib/gateway:next && docker push cordislib/gateway:next",
"release": "pnpm run cleanup && pnpm run release:npm && pnpm run release:docker",
"release:next": "pnpm run cleanup && pnpm recursive run bump-next && pnpm run release:npm-next && pnpm run release:docker-next",
"changelog": "standard-version",
"bump-next": "pnpm version --git-tag-version=false $(jq --raw-output '.version' package.json)-next.$(git rev-parse --short HEAD).$DATE",
"bump-all-next": "export DATE=$(date +%s); pnpm recursive run bump-next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cordis-lib/cordis.git"
},
"contributors": [
"didinele <[email protected]> (https://github.com/didinele)",
"Holo-Buckshot (https://github.com/Holo-Buckshot)"
],
"author": "didinele",
"bugs": {
"url": "https://github.com/cordis-lib/cordis/issues"
},
"homepage": "https://github.com/cordis-lib/cordis#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/generator": "^7.16.0",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.3.1",
"babel-plugin-top-level-await": "^0.7.1",
"babel-plugin-transform-import-meta": "^2.1.0",
"eslint": "^7.32.0",
"eslint-config-marine": "^9.0.6",
"husky": "^4.3.8",
"jest": "^27.3.1",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"typedoc": "^0.19.2",
"typedoc-plugin-as-member-of": "^1.0.2",
"typedoc-plugin-markdown": "^3.11.7",
"typedoc-plugin-no-inherit": "1.3.0",
"typedoc-plugin-remove-references": "^0.0.5",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
"pascal-case"
]
}
}
}