-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
137 lines (137 loc) · 3.71 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "sphere-node-cli",
"description": "A fast, performant, easy-to-use and stream-based CLI for SPHERE.IO",
"version": "4.0.0",
"preferGlobal": true,
"private": false,
"author": "Nicola Molinari <[email protected]>",
"bin": {
"sphere": "./bin/sphere",
"sphere-import": "./bin/sphere-import"
},
"scripts": {
"preinstall": "node safe-resolution-check.js",
"build": "npm run lint && npm run clean && babel --optional runtime lib --out-dir dist",
"clean": "rimraf dist coverage",
"lint": "./scripts/lint lib test",
"test": "npm run lint && cross-env NODE_ENV=test babel-node node_modules/.bin/tape test/**/*.spec.js test/*.spec.js | tap-spec",
"check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100 --statements 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test:watch": "chokidar lib test -c 'npm test'",
"prepublish": "npm run build",
"coverage": "npm run lint && npm run clean && cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"test:features": "npm run build && babel-node $(npm bin)/cucumber-js"
},
"main": "./dist/sphere",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/sphereio/sphere-node-cli.git"
},
"files": [
"dist/",
"bin/",
"safe-resolution-check.js"
],
"bugs": {
"url": "https://github.com/sphereio/sphere-node-cli/issues"
},
"keywords": [
"cli",
"sphere",
"sphere.io",
"stream",
"import"
],
"engines": {
"node": ">= 10"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "./scripts/lint-staged-files"
}
},
"nyc": {
"include": [
"lib/"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"@commercetools/custom-objects-importer": "^3.0.0",
"@commercetools/discount-code-importer": "^3.0.0",
"@commercetools/orders-update": "^3.1.0",
"@commercetools/state-importer": "^3.0.0",
"JSONStream": "^1.3.4",
"commander": "github:emmenko/commander.js#patch-help",
"debug": "4.1.1",
"highland": "^2.11.1",
"inflection": "^1.12.0",
"sphere-category-sync": "^1.2.3",
"sphere-customer-import": "1.0.5",
"sphere-node-sdk": "^3.0.1",
"sphere-node-utils": "^2.0.1",
"sphere-product-import": "^2.1.3",
"sphere-product-type-import": "^2.0.2",
"sphere-stock-import": "^3.0.0",
"stream-transform": "2.0.2",
"winston": "2.4.5"
},
"resolutions": {
"lodash": "^4.17.15",
"sphere-node-utils": "2.0.1"
},
"eslintConfig": {
"extends": "commercetools"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10"
}
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.4",
"chokidar-cli": "^2.0.0",
"codecov": "^3.0.0",
"cross-env": "^6.0.0",
"cucumber": "^5.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-commercetools": "^6.0.0",
"eslint-formatter-pretty": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"ghooks": "^2.0.2",
"mkdirp": "^0.5.1",
"nyc": "^14.0.0",
"rewire": "^4.0.0",
"rimraf": "^3.0.0",
"sinon": "^7.4.2",
"tap-spec": "^5.0.0",
"tape": "^4.6.2",
"validate-commit-msg": "^2.8.0"
}
}