-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.93 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
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
{
"workspaces": [
"Packages/*"
],
"private": true,
"scripts": {
"start": "tasks/cli/index.js"
},
"devDependencies": {
"@auto/changelog": "^0.2.0",
"@auto/commit-prompt": "^0.2.0",
"@auto/core": "^0.3.0",
"@auto/github": "^0.2.0",
"@auto/slack": "^0.2.0",
"@auto/telegram": "^0.2.0",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@nextools/eslint-config": "^0.4.0",
"@nextools/eslint-plugin": "^0.2.0",
"@nextools/typescript-config": "^0.2.0",
"@start/plugin": "^2.0.0",
"@start/plugin-sequence": "^2.0.0",
"@start/reporter-verbose": "^2.0.0",
"@types/node-fetch": "^2.5.7",
"@types/prompts": "^2.0.8",
"@types/puppeteer-core": "^2.0.0",
"@types/xml2js": "^0.4.5",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"execa": "^4.0.3",
"figures": "^3.2.0",
"globby": "^11.0.0",
"node-fetch": "^2.6.1",
"pifs": "^2.0.0",
"prompts": "^2.3.2",
"puppeteer-core": "^5.2.1",
"tsfn": "^2.0.0",
"typeon": "^2.0.0",
"typescript": "^3.9.7",
"xml2js": "^0.4.23"
},
"start": {
"file": "tasks/"
},
"auto": {
"npm": {
"access": "public"
},
"prefixes": {
"major": "💥",
"minor": "🌱",
"patch": "🐞",
"publish": "📦",
"dependencies": "♻️",
"initial": "🐣",
"test": "👾",
"docs": "📝",
"refactor": "🛠",
"wip": "🚧"
},
"commit": {
"major": "Breaking Change",
"minor": "New feature",
"patch": "Bugfix",
"initial": "Initial",
"depepdencies": "Dependencies",
"test": "Test",
"docs": "Docs",
"refactor": "Refactor",
"wip": "WIP"
}
},
"eslintConfig": {
"extends": "@nextools/eslint-config"
},
"eslintIgnore": [
"build/",
"coverage/",
"node_modules/"
]
}