-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·66 lines (66 loc) · 1.68 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
65
66
{
"name": "contentstack-import",
"version": "1.7.8",
"description": "Import data into Contentstack",
"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.7.2",
"debug": "4.3.1",
"lodash": "4.17.21",
"marked": "^13.0.1",
"mkdirp": "1.0.4",
"ncp": "2.0.0",
"request": "2.88.0",
"winston": "2.2.0"
},
"engines": {
"node": ">=6"
},
"main": "app.js",
"maintainers": [
{
"name": "rohitmishra",
"email": "rohit.mishra@contentstack.com"
},
{
"name": "ninadhatkar",
"email": "ninad.hatkar@contentstack.com"
},
{
"name": "mynk",
"email": "mayank@contentstack.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/contentstack/contentstack-import"
},
"bugs": {
"url": "https://github.com/contentstack/contentstack-import/issues"
},
"scripts": {
"import": "node app.js",
"import-assets": "node app.js assets",
"import-entries": "node app.js entries",
"import-contenttypes": "node app.js content_types",
"import-locales": "node app.js locales",
"import-env": "node app.js environments",
"import-globalfields": "node app.js global_fields",
"import-webhooks": "node app.js webhooks",
"import-extensions": "node app.js extensions",
"import-labels": "node app.js labels"
},
"keywords": [
"contentstack",
"migration-utility",
"stack-backup"
],
"devDependencies": {
"eslint": "5.9.0"
}
}