-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "aoc-tools",
"version": "0.1.4",
"description": "A set of tools for working with Advent of Code challenges",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"run": "node dist/index.js",
"start": "npm run build && npm run run",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [
"advent-of-code",
"aoc"
],
"author": "Raz Ali",
"license": "ISC",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/figlet": "^1.5.8",
"@types/node": "^20.10.4",
"semantic-release": "^22.0.10",
"typescript": "^5.3.3"
},
"bin": {
"aoc": "./dist/index.js"
},
"files": [
"./dist/**/*",
"./templates/**/*"
],
"dependencies": {
"axios": "^1.6.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"figlet": "^1.7.0",
"handlebars": "^4.7.8",
"read-package-up": "^11.0.0",
"tree-node-cli": "^1.6.0",
"yup": "^1.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/FooBarRaz/aoc-cli/"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
{
"path": "@semantic-release/git",
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
},
"@semantic-release/npm"
]
}
}