forked from dsyman2/contentstack-export
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "contentstack-export",
"version": "1.3.0",
"description": "Exports Contentstack's stack contents",
"homepage": "https://www.contentstack.com/docs/tools-and-frameworks/content-migration/within-contentstack",
"author": {
"name": "Contentstack LLC <support@contentstack.com>",
"url": "https://www.contentstack.com/"
},
"license": "MIT",
"dependencies": {
"bluebird": "3.5.1",
"debug": "4.1.0",
"lodash": "4.17.15",
"mkdirp": "0.5.1",
"request": "2.88.0",
"winston": "2.2.0"
},
"main": "app.js",
"maintainers": [
{
"name": "rohitmishra",
"email": "rohit.mishra@contentstack.com"
},
{
"name": "ninadhatkar",
"email": "ninad.hatkar@contentstack.com"
},
{
"name": "mynk",
"email": "mayank@contentstack.com"
}
],
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/contentstack/contentstack-export/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/contentstack/contentstack-export"
},
"scripts": {
"export": "node app.js",
"export-assets": "node app.js assets",
"export-entries": "node app.js entries",
"export-contenttypes": "node app.js content_types",
"export-locales": "node app.js locales",
"export-globalfields": "node app.js global_fields",
"export-env": "node app.js environments",
"export-extensions": "node app.js extensions",
"export-webhooks": "node app.js webhooks",
"export-labels": "node app.js labels"
},
"keywords": [
"contentstack",
"migration-utility",
"stack-backup"
],
"devDependencies": {
"eslint": "4.19.1"
}
}