-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 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
{
"name": "@datocms/cli-plugin-wordpress",
"version": "2.0.14",
"description": "DatoCMS CLI plugin to import WordPress sites",
"author": "DatoCMS <support@datocms.com>",
"homepage": "https://github.com/datocms/cli",
"license": "MIT",
"main": "lib/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/datocms/cli.git",
"directory": "packages/cli-plugin-wordpress"
},
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@datocms/cli-utils": "^2.0.14",
"@oclif/core": "^1.8.0",
"async-scheduler": "^1.4.4",
"enquirer": ">= 2.3.0 < 3",
"inflected": "^2.1.0",
"listr2": "^4.0.5",
"wpapi": "^1.2.2"
},
"oclif": {
"commands": "./lib/commands",
"repositoryPrefix": "<%- repo %>/blob/v<%- version %>/packages/cli-plugin-wordpress/<%- commandPath %>"
},
"scripts": {
"build": "rm -rf lib && tsc -b",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --timeout 120000 --require ts-node/register --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/datocms/cli/issues",
"keywords": [
"datocms",
"cli"
],
"types": "lib/src/index.d.ts",
"gitHead": "156eff36152666cf811463135b831818026501a0",
"devDependencies": {
"@datocms/dashboard-client": "^0.1.8",
"@oclif/test": "^2.1.0",
"@types/inflected": "^1.1.29",
"@types/listr": "^0.14.4",
"@types/wpapi": "^1.1.1",
"@whatwg-node/fetch": "^0.9.14",
"oclif": "^3"
}
}