-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/sync-actions",
"version": "7.4.0",
"description": "Build API update actions for the commercetools platform.",
"keywords": [
"commercetools",
"sync",
"actions"
],
"homepage": "https://commercetools.github.io/nodejs/",
"bugs": "https://github.com/commercetools/nodejs/issues",
"license": "MIT",
"author": "Nicola Molinari <nicola.molinari@commercetools.com> (https://github.com/emmenko)",
"main": "dist/commercetools-sync-actions.cjs.js",
"module": "dist/commercetools-sync-actions.esm.js",
"umd:min": "dist/commercetools-sync-actions.umd.js",
"preconstruct": {
"entrypoints": [
"./index.js"
],
"umdName": "commercetoolsSyncActions"
},
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs.git"
},
"files": [
"dist",
"lib"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "exit 0;"
},
"dependencies": {
"fast-equals": "^2.0.0",
"jsondiffpatch": "0.5.0",
"lodash.flatten": "^4.4.0",
"lodash.foreach": "^4.5.0",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isnil": "^4.0.0",
"lodash.shuffle": "^4.2.0",
"lodash.sortby": "^4.7.0",
"lodash.uniqwith": "^4.5.0",
"lodash.without": "^4.4.0"
}
}