-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.76 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
{
"name": "@kurone-kito/dantalion",
"version": "0.19.0",
"description": "Calculates the personality from the birthday.",
"keywords": [
"ba-zi",
"bazi",
"birthday",
"chinese-astrology",
"console",
"console-app",
"four-pillars",
"library",
"self-assessment",
"terminal-app",
"ziweidoushu",
"zodiac"
],
"homepage": "https://kurone-kito.github.io/dantalion/",
"bugs": {
"url": "https://github.com/kurone-kito/dantalion/issues"
},
"license": "MIT",
"author": "kurone-kito <krone@kit.black> (https://kit.black/)",
"repository": "github:kurone-kito/dantalion",
"scripts": {
"dantalion": "npm run internal:cli dantalion -- --",
"internal:cli": "lerna exec --loglevel=silent --no-prefix --scope=@kurone-kito/dantalion-cli -- npm run",
"internal:web": "lerna exec --loglevel=silent --no-prefix --scope=@kurone-kito/dantalion-web-playground -- npm run",
"lint": "lerna exec --concurrency 1 --no-bail -- npm run lint",
"prepack": "lerna exec --concurrency 1 -- npm run prepack",
"prepare": "run-s prepare:*",
"prepare:husky": "husky install",
"prepare:lerna": "lerna clean --yes && lerna bootstrap",
"serve": "npm run internal:web serve",
"storybook": "npm run internal:web storybook",
"storybook:build": "npm run internal:web storybook:build",
"start": "lerna run start --parallel --stream",
"test": "lerna exec --concurrency 1 --no-bail -- npm test"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@octokit/core": "^3.5.1",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=12.1"
},
"private": true,
"publishConfig": {
"access": "public"
}
}