-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "sphere-category-sync",
"description": "Import and export a category tree to and from a commercetools project.",
"version": "1.2.4",
"homepage": "https://github.com/sphereio/sphere-category-sync",
"private": false,
"author": {
"name": "Hajo Eichler",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sphereio/sphere-category-sync.git"
},
"bugs": {
"url": "https://github.com/sphereio/sphere-category-sync/issues"
},
"keywords": [
"commercetools",
"cli"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sphereio/sphere-category-sync/blob/master/LICENSE-MIT"
}
],
"bin": {
"category-sync": "./bin/category-sync"
},
"main": "./lib",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"build": "grunt build",
"test": "grunt test",
"coverage": "grunt coverage",
"watch:test": "grunt watch:test",
"release": "grunt release"
},
"dependencies": {
"@commercetools/product-json-to-csv": "^3.0.2",
"bluebird": "3.7.2",
"csv": "5.3.2",
"csv-stringify": "5.5.0",
"highland": "2.13.5",
"lodash": "^4.17.11",
"sphere-node-sdk": "3.2.2",
"sphere-node-utils": "2.0.1",
"stream-transform": "1.0.8",
"underscore": "1.10.2",
"underscore-mixins": "0.1.4",
"underscore.string": "3.3.5",
"yargs": "13.3.2"
},
"devDependencies": {
"coffeelint": "^1.15.7",
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-bump": "0.8.0",
"grunt-cli": "^1.3.2",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-clean": "0.7.0",
"grunt-contrib-coffee": "github:daern91/grunt-contrib-coffee",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-shell": "1.3.1",
"istanbul": "0.4.5",
"jasmine-node": "github:daern91/jasmine-node",
"sphere-coffeelint": "git://github.com/sphereio/sphere-coffeelint.git#master"
}
}