-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.4 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
57
58
59
60
61
62
63
64
65
66
{
"name": "im-cli",
"version": "1.0.2",
"description": "A command line tool to manage Import Maps",
"directories": {
"doc": "docs",
"lib": "lib"
},
"type": "module",
"author": "Beto Muniz <[email protected]>",
"license": "MIT",
"bin": {
"im": "dist/im-cli.js"
},
"main": "dist/im-cli.js",
"types": "dist/im-cli.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/obetomuniz/im-cli.git"
},
"bugs": {
"url": "https://github.com/obetomuniz/im-cli/issues",
"email": "[email protected]"
},
"dependencies": {
"axios": "^1.3.4",
"ora": "^6.3.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/node": "^18.15.11",
"release-it": "^15.9.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"scripts": {
"build": "rm -rf dist/ && tsc",
"start": "ts-node src/im-cli.ts",
"prepublishOnly": "npm run build",
"release": "release-it"
},
"release-it": {
"git": {
"commitMessage": "Release v${version}"
},
"github": {
"release": true,
"web": true
},
"npm": {
"publish": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "docs/CHANGELOG.md",
"header": "# Changelog",
"preset": {
"name": "conventionalcommits"
}
}
}
}
}