-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.07 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
{
"name": "commitji",
"version": "1.0.0",
"description": "Create conventional commits with gitmojis",
"main": "index.js",
"engines": {
"node": "^16.14.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lerna": "lerna",
"bs": "lerna bootstrap",
"version": "lerna version --conventional-commits --create-release github",
"compile-core": "lerna run compile --scope=@commitji/core",
"compile-ext": "lerna run compile --scope=commitji-vs",
"watch-core": "lerna run watch --scope=@commitji/core",
"watch-ext": "lerna run watch --scope=commitji-vs",
"publish-core": "lerna exec --scope=@commitji/core -- npm publish",
"publish-ext": "lerna exec --scope=commitji-vs -- npm run vscode:publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmaicaaan/commitji.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmaicaaan/commitji/issues"
},
"homepage": "https://github.com/jmaicaaan/commitji#readme",
"dependencies": {
"lerna": "^4.0.0"
}
}