-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.14 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@itinerisltd/composify",
"description": "Turn WordPress plugin zip files into git repositories, so that composer version constraints work properly.",
"type": "module",
"version": "0.9.0",
"author": {
"name": "Tang Rufus",
"email": "tangrufus@gmail.com",
"url": "https://typist.tech"
},
"contributors": [
{
"name": "Itineris Limited",
"email": "hello@itineris.co.uk",
"url": "https://itineris.co.uk"
}
],
"bin": {
"composify": "./bin/run.js"
},
"bugs": "https://github.com/itinerisltd/composify/issues",
"dependencies": {
"@inquirer/prompts": "^8.0.1",
"@oclif/core": "^4.5.0",
"@oclif/plugin-help": "^6.2.30",
"chalk": "^5.4.1",
"execa": "^9.6.0",
"fs-extra": "^11.3.0",
"globby": "^16.0.0",
"replace-in-file": "^8.3.0",
"tmp": "^0.2.3"
},
"devDependencies": {
"@eslint/compat": "^2",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25",
"@types/tmp": "^0.2.6",
"chai": "^6",
"eslint": "^9",
"eslint-config-oclif": "^6",
"eslint-config-prettier": "^10",
"mocha": "^11",
"oclif": "^4.20.5",
"shx": "^0.4.0",
"ts-node": "^10",
"typescript": "^6"
},
"engines": {
"node": ">=22"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"homepage": "https://github.com/itinerisltd/composify",
"keywords": [
"composer",
"composify",
"oclif",
"wordpress-plugin",
"wordpress"
],
"license": "MIT",
"main": "dist/index.js",
"oclif": {
"bin": "composify",
"commands": {
"strategy": "single",
"target": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/itinerisltd/composify.git"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "echo NO TESTS",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts"
}