forked from Andarist/lerna-alias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "workspace-alias",
"version": "0.1.0",
"description": "Get aliases for your workspace packages for the other tools",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"test": "npm run test:warn && exit 1",
"test:warn": "echo \"Error: no test specified\"",
"precommit": "lint-staged",
"prerelease": "npm run test:warn",
"release:patch": "npm run prerelease && npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm run prerelease && npm version minor && npm publish && git push --follow-tags",
"release:major": "npm run prerelease && npm version major && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/penx/workspace-alias.git"
},
"keywords": [
"npm",
"yarn",
"workspace",
"workspaces",
"monorepo",
"alias",
"webpack",
"rollup",
"jest"
],
"author": "Alasdair McLeay (https://github.com/penx)",
"license": "MIT",
"bugs": {
"url": "https://github.com/penx/workspace-alias/issues"
},
"homepage": "https://github.com/penx/workspace-alias#readme",
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0"
},
"dependencies": {
"glob": "^7.1.7"
}
}