-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "atomcommit",
"version": "0.1.0",
"description": "Deterministic local CLI for turning git diffs into atomic commit plans.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"src",
"fixtures",
"README.md",
"LICENSE",
"SECURITY.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rogerchappel/atomcommit.git"
},
"scripts": {
"test": "node --test test/*.test.js",
"check": "node --check src/index.js && node --test test/*.test.js",
"build": "node --check src/index.js",
"smoke": "bash scripts/smoke.sh",
"package:smoke": "npm pack --dry-run",
"release:check": "npm run check && npm run smoke && npm run package:smoke",
"validate": "bash scripts/validate.sh"
},
"keywords": [
"git",
"cli",
"commits",
"atomic-commits",
"developer-tools",
"local-first"
],
"author": "Roger Chappel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rogerchappel/atomcommit.git"
},
"bugs": {
"url": "https://github.com/rogerchappel/atomcommit/issues"
},
"homepage": "https://github.com/rogerchappel/atomcommit#readme",
"bin": {
"atomcommit": "./src/index.js"
},
"engines": {
"node": ">=20"
}
}