-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"author": "George Madeley",
"bugs": {
"url": "https://github.com/George-Madeley/Notes/issues"
},
"description": "A series of notes written by George Madeley",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/format": "^19.8.0",
"@commitlint/types": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"semantic-release": "^24.2.3",
"typescript": "^5.8.3"
},
"directories": {
"doc": "docs"
},
"homepage": "https://github.com/George-Madeley/Notes#readme",
"license": "SEE LICENSE IN LICENSE",
"lint-staged": {
"*.py": [
"pipenv run ruff check"
]
},
"name": "notes",
"repository": {
"type": "git",
"url": "git+https://github.com/George-Madeley/Notes.git"
},
"scripts": {
"lint": "pipenv run ruff check",
"lint:fix": "pipenv run ruff check --fix",
"prepare": "husky",
"release": "semantic-release"
},
"version": "1.0.0"
}