-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "commercetools-customer-export",
"description": "Quick and easy way to export your customers from commercetools platform into files, with SFTP support!",
"version": "0.0.1",
"homepage": "https://github.com/mmoelli/commercetools-customer-export",
"private": false,
"keywords": [
"sphere",
"sphereio",
"api",
"customer",
"export",
"xml",
"csv",
"commercetools",
"platform"
],
"author": {
"name": "Martin Möllmann",
"email": "[email protected]"
},
"maintainers": [],
"repository": {
"type": "git",
"url": "https://github.com/mmoelli/commercetools-customer-export.git"
},
"bugs": {
"url": "https://github.com/mmoelli/commercetools-customer-export/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mmoelli/commercetools-customer-export/blob/master/LICENSE-MIT"
}
],
"bin": {
"customer-export": "bin/customer-export"
},
"main": "lib/run",
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"test": "grunt coverage"
},
"dependencies": {
"bluebird": "2.9.33",
"csv": "0.3.x",
"optimist": "0.6.1",
"safe-access": "0.1.0",
"sphere-node-sdk": "1.4.3",
"sphere-node-utils": "0.7.0",
"tmp": "0.0.27",
"underscore": "1.8.3",
"underscore-mixins": "*"
},
"devDependencies": {
"coveralls": "2.11.4",
"grunt": "0.4.5",
"grunt-bump": "0.3.2",
"grunt-cli": "0.1.13",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-coffee": "0.13.0",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-watch": "0.6.1",
"grunt-shell": "1.1.2",
"istanbul": "0.3.18",
"jasmine-node": "1.14.5",
"sphere-coffeelint": "sphereio/sphere-coffeelint#master"
}
}