-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.31 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.31 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "sphere-order-export",
"description": "Quick and easy way to export your orders from commercetools into files, with SFTP support!",
"version": "3.1.2",
"homepage": "https://github.com/sphereio/sphere-order-export",
"private": false,
"keywords": [
"sphere",
"sphereio",
"api",
"order",
"export",
"xml",
"csv",
"cli"
],
"author": {
"name": "Hajo Eichler",
"email": "hajo.eichler@commercetools.de"
},
"maintainers": [
{
"name": "Nicola Molinari",
"email": "nicola.molinari@commercetools.de"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sphereio/sphere-order-export.git"
},
"bugs": {
"url": "https://github.com/sphereio/sphere-order-export/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sphereio/sphere-order-export/blob/master/LICENSE-MIT"
}
],
"bin": {
"order-export": "bin/order-export",
"delivery-export": "bin/delivery-export"
},
"main": "lib/run",
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"test": "grunt coverage",
"lint": "grunt coffeelint",
"watch": "grunt watch"
},
"dependencies": {
"@commercetools/product-json-to-csv": "2.2.5",
"bluebird": "2.9.33",
"csv": "0.3.x",
"csv-parser": "^1.11.0",
"fs-extra": "^3.0.1",
"object-path": "^0.11.4",
"optimist": "0.6.1",
"safe-access": "0.1.0",
"sphere-node-sdk": "^3.2.2",
"sphere-node-utils": "^2.0.1",
"tmp": "0.0.33",
"underscore": "1.8.3",
"underscore-mixins": "*",
"xmlbuilder": "2.2.1"
},
"devDependencies": {
"npm-force-resolutions": "0.0.3",
"coveralls": "^3.0.2",
"elasticio-cli": "github:daern91/elasticio-cli",
"grunt": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-coffeelint": "0.0.8",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-coffee": "github:daern91/grunt-contrib-coffee",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-shell": "0.6.4",
"istanbul": "^0.4.5",
"jasmine-node": "github:daern91/jasmine-node",
"sphere-coffeelint": "github:sphereio/sphere-coffeelint#master",
"streamtest": "^1.2.2",
"xml2js": "0.4.2"
},
"resolutions": {
"handlebars": "^4.7.6",
"lodash": "^4.17.15"
}
}