-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.16 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
{
"name": "mini-types",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:ant-mini-program/api-typings.git"
},
"scripts": {
"init": "yarn install && lerna bootstrap",
"publish:prod": "lerna publish --exact --force-publish='*' --no-push",
"publish:prod:patch": "lerna publish patch --exact --force-publish='*' --no-push",
"publish:next": "lerna publish --preid next-$(date +%s) --dist-tag next --force-publish='*' --no-push --no-git-tag-version prepatch --ignore-prepublish --ignore-scripts --no-private -y",
"disttag:release": "sh ./scripts/set-release-tag.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "jest",
"ci": "yarn test",
"lint": "prettier -w .",
"prepare": "husky install"
},
"lint-staged": {
"*.d.ts": [
"prettier --config ./.prettierrc --write"
]
},
"devDependencies": {
"@tsd/typescript": "^4.7.4",
"conventional-changelog-cli": "^2.2.2",
"husky": "^8.0.3",
"jest": "^28.1.1",
"jest-runner-tsd": "^3.1.0",
"lerna": "^5.0.0",
"lint-staged": "13.1.0",
"prettier": "^2.8.1",
"typescript": "^4.6.4"
}
}