-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 917 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 917 Bytes
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
{
"name": "@pubware/git",
"version": "1.0.0-alpha.1",
"description": "git plugin",
"author": "William Grosset (https://williamgrosset.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pubware/git"
},
"keywords": [
"package",
"publisher",
"release",
"cli",
"git",
"plugin"
],
"type": "module",
"engines": {
"node": ">=18"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@pubware/plugin": "1.0.0-alpha.2"
}
}