forked from commercetools/sphere-node-product-csv-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.46 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
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
93
{
"name": "sphere-node-product-csv-sync",
"description": "Import and export products to and from a commercetools project.",
"version": "1.5.4",
"homepage": "https://github.com/sphereio/sphere-node-product-csv-sync",
"private": false,
"author": {
"name": "Hajo Eichler",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Nicola Molinari",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sphereio/sphere-node-product-csv-sync.git"
},
"bugs": {
"url": "https://github.com/sphereio/sphere-node-product-csv-sync/issues"
},
"license": "MIT",
"bin": {
"product-csv-sync": "bin/product-csv-sync"
},
"main": "main.js",
"engines": {
"node": ">= 6"
},
"scripts": {
"lint": "grunt coffeelint",
"build": "grunt build",
"watch": "grunt watch:dev",
"test": "grunt coverage"
},
"dependencies": {
"@commercetools/api-request-builder": "^3.7.1",
"@commercetools/sdk-client": "^1.5.5",
"@commercetools/sdk-middleware-auth": "^3.5.2",
"@commercetools/sdk-middleware-http": "^2.3.3",
"@commercetools/sdk-middleware-queue": "^1.1.5",
"@commercetools/sdk-middleware-user-agent": "^1.2.7",
"@commercetools/sync-actions": "^1.22.4",
"archiver": "^2.1.1",
"bluebird": "^3.5.1",
"commander": "2.3.0",
"csv": "0.3.7",
"exceljs": "^1.1.1",
"extract-zip": "^1.6.5",
"iconv-lite": "0.4.19",
"lodash.chunk": "^4.2.0",
"lodash.merge": "^4.6.0",
"optimist": "0.6.1",
"prompt": "1.0.0",
"sphere-node-utils": "^1.0.1",
"tmp": "0.0.33",
"underscore": "1.8.3",
"underscore-mixins": "*",
"underscore.string": "^3.3.4",
"walk-sync": "^0.3.1"
},
"devDependencies": {
"coffeelint": "^2.1.0",
"coveralls": "^3.0.0",
"cuid": "2.1.1",
"grunt": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-coffee": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jasmine": "^2.0.3",
"grunt-contrib-watch": "^1.0.0",
"grunt-shell": "^2.1.0",
"istanbul": "0.4.5",
"jasmine": "3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"sinon": "^6.1.0",
"sphere-coffeelint": "git://github.com/sphereio/sphere-coffeelint.git#master"
},
"keywords": [
"sphere",
"sphereio",
"api",
"sync",
"import",
"export",
"csv",
"cli"
]
}