-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"name": "@datocms/cli-plugin-contentful",
"version": "2.0.14",
"description": "Plugin for DatoCMS CLI to import projects from Contentful to DatoCMS",
"keywords": [
"contentful",
"datocms",
"import"
],
"engines": {
"node": ">=12.0.0"
},
"author": "DatoCMS <support@datocms.com>",
"homepage": "https://github.com/datocms/cli#readme",
"license": "MIT",
"main": "lib/src/index.js",
"types": "lib/src/index.d.js",
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datocms/cli.git",
"directory": "packages/cli-plugin-contentful"
},
"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"
},
"bugs": {
"url": "https://github.com/datocms/cli/issues"
},
"dependencies": {
"@datocms/cli-utils": "^2.0.14",
"@oclif/core": "^1.8.0",
"async-scheduler": "^1.4.4",
"contentful-management": "^10.6.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.5",
"datocms-contentful-to-structured-text": "^2.1.7",
"datocms-structured-text-utils": "^2.0.4",
"enquirer": ">= 2.3.0 < 3",
"humps": "^2.0.1",
"listr2": "^4.0.5",
"lodash": "^4.17.21"
},
"devDependencies": {
"@datocms/dashboard-client": "^0.1.8",
"@oclif/test": "^2.1.0",
"@types/humps": "^2.0.1",
"@types/listr": "^0.14.4",
"@types/pluralize": "^0.0.29",
"@whatwg-node/fetch": "^0.9.14",
"dotenv": "^16.0.2",
"oclif": "^3"
},
"oclif": {
"commands": "./lib/commands",
"repositoryPrefix": "<%- repo %>/blob/v<%- version %>/packages/cli-plugin-contentful/<%- commandPath %>"
},
"gitHead": "69c758175e09559c3267542f5b70efa48292a7dc"
}