-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
67
68
69
{
"name": "@itinerisltd/composify",
"description": "Turn WordPress plugin zip files into git repositories, so that composer version constraints work properly.",
"version": "0.7.0",
"author": {
"name": "Tang Rufus",
"email": "[email protected]",
"url": "https://typist.tech"
},
"contributors": [
{
"name": "Itineris Limited",
"email": "[email protected]",
"url": "https://itineris.co.uk"
}
],
"bin": {
"composify": "./bin/run"
},
"bugs": "https://github.com/itinerisltd/composify/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^6",
"chalk": "^5.3.0",
"execa": "^9.1.0",
"fs-extra": "^11.2.0",
"tmp": "^0.2.0",
"tslib": "^2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.0.0",
"@types/tmp": "^0.2.0",
"eslint": "^8.56.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.35",
"ts-node": "^10.9.2",
"typescript": "^5.3"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/itinerisltd/composify",
"keywords": [
"composer",
"composify",
"oclif",
"wordpress-plugin",
"wordpress"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "composify"
},
"repository": "github:itinerisltd/composify",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b",
"test": "echo NO TESTS",
"version": "npx doctoc README.md && git add README.md"
},
"types": "lib/index.d.ts"
}