-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
86 lines (86 loc) · 2.65 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
{
"name": "@diconium/commerce-cif-hybris",
"description": "Adobe Commerce Integration Framework (CIF) Hybris Integration Project",
"private": true,
"author": "diconium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/diconium/commerce-cif-hybris.git"
},
"scripts": {
"deploy": "lerna run deploy-package -- ",
"remove-package": "lerna run remove-package -- ",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "nyc lerna run test:unit",
"test:integration": "lerna run test:integration",
"lint": "tslint -c tslint.json '**/src/**/*.ts'",
"release": "lerna publish --conventional-commits --npm-tag=next",
"build": "yarn build:cif",
"build:cif": "tsc -b cif/*/tsconfig.json",
"clean": "rimraf **/lib **/node_modules yarn.lock **/tsconfig.tsbuildinfo",
"lerna:version": "lerna version --conventional-commits --yes --push -m \"docs(all): [skip ci] Bump versions\" --loglevel trace",
"lerna:publish": "lerna publish from-git --yes --loglevel trace",
"ow:config": "wsk property set --auth \"$ADOBE_RUNTIME_AUTH\" --apihost \"$ADOBE_RUNTIME_HOST\" --namespace \"$ADOBE_NAMESPACE\"",
"ow:eu:config": "wsk property set --auth \"$ADOBE_RUNTIME_AUTH_EU\" --apihost \"$ADOBE_RUNTIME_HOST_EU\" --namespace \"$ADOBE_NAMESPACE_EU\""
},
"devDependencies": {
"@adobe/commerce-cif-model": "^1.1.2",
"@types/chai": "^4.1.3",
"@types/i18n": "^0.8.3",
"@types/lodash": "^4.14.136",
"@types/mocha": "^5.2.0",
"@types/nock": "^9.3.0",
"@types/node": "^10.0.6",
"@types/node-fetch": "^2.1.2",
"@types/tough-cookie": "^2.3.3",
"barrelsby": "^1.0.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"chai-shallow-deep-equal": "^1.4.6",
"lerna": "^3.4.0",
"lodash": "^4.17.15",
"mocha": "^5.1.0",
"mocha-junit-reporter": "^1.18.0",
"nock": "^10.0.1",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"serverless": "^1.32.0",
"serverless-openwhisk": "^0.18.1",
"serverless-webpack": "^5.2.0",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^3.1.3",
"webpack": "^4.23.1"
},
"workspaces": [
"cif/*"
],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/coverage/**",
"**/lib/**",
"**/test/**",
"**/index.ts",
"**/autoGenerator.js",
"**/*.config.js",
"cif/common"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"all": true,
"cache": false,
"exclude-after-remap": false
}
}