-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
64 lines (64 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
{
"name": "contentstack-export",
"version": "1.6.4",
"description": "Exports Contentstack's stack contents",
"homepage": "https://www.contentstack.com/docs/tools-and-frameworks/content-migration/within-contentstack",
"author": {
"name": "Contentstack LLC <[email protected]>",
"url": "https://www.contentstack.com/"
},
"license": "MIT",
"dependencies": {
"bluebird": "3.7.2",
"lodash": "4.17.21",
"mkdirp": "1.0.4",
"request": "2.88.0",
"winston": "2.2.0",
"debug": "4.3.5"
},
"main": "app.js",
"maintainers": [
{
"name": "rohitmishra",
"email": "[email protected]"
},
{
"name": "ninadhatkar",
"email": "[email protected]"
},
{
"name": "mynk",
"email": "[email protected]"
}
],
"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-labels": "node app.js labels",
"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"
},
"keywords": [
"contentstack",
"migration-utility",
"stack-backup"
],
"devDependencies": {
"eslint": "4.19.1"
}
}