-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
149 lines (149 loc) · 4.74 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
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "contentful-merge",
"version": "0.0.0",
"description": "Contentful CLI to diff and merge entries across environments",
"author": "Contentful <[email protected]>",
"private": false,
"bin": {
"contentful-merge": "./bin/run",
"contentful-merge-dev": "./bin/dev"
},
"homepage": "https://github.com/contentful/contentful-merge",
"license": "MIT",
"main": "dist/index.js",
"repository": "contentful/contentful-merge",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^3.0.9",
"@oclif/plugin-help": "^6.0.4",
"@oclif/plugin-plugins": "^4.0.2",
"@segment/analytics-node": "^2.0.0",
"@sentry/node": "^7.61.0",
"@sentry/profiling-node": "^7.100.1",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"contentful": "^10.6.10",
"contentful-collection": "^0.0.4",
"contentful-sdk-core": "^8.1.2",
"fast-json-patch": "^3.1.1",
"generate-json-patch": "^1.1.0",
"listr2": "^8.0.0",
"lodash": "^4.17.21",
"p-limit": "^3.1.0",
"semantic-release": "^22.0.6",
"wrap-ansi": "7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.0.0",
"@contentful/integration-test-utils": "^2.0.1",
"@oclif/test": "^3.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/chai": "^4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.6",
"@types/wrap-ansi": "3.0.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"chai": "^4",
"contentful-management": "^10.39.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"fancy-test": "^3.0.1",
"husky": "^9.0.6",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"oclif": "^3.17.1",
"ora": "^8.0.1",
"prettier": "^3.0.0",
"shx": "^0.3.3",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.2.2"
},
"oclif": {
"bin": "contentful-merge",
"dirname": "contentful-merge",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b && shx cp ./dist/config.production.js ./dist/config.js",
"check-types": "tsc",
"commitlint": "commitlint",
"lint": "eslint src --ext '.ts,.js'",
"lint-fix": "eslint src --ext '.ts,.js' --fix",
"lint-staged": "lint-staged",
"postpack": "shx rm -f oclif.manifest.json",
"prettier": "prettier --config ./.prettierrc --check \"{**/*.js,**/*.ts,**/*.json}\"",
"prettier-fix": "prettier --config ./.prettierrc --write \"{**/*.js,**/*.ts,**/*.json}\"",
"prepack": "npm run build && oclif manifest && oclif readme",
"prepare": "husky install",
"test": "npm run test-unit && npm run test-integration && npm run test-e2e",
"test-integration": "mocha --exit test/integration/**/*.test.ts",
"test-e2e": "mocha --exit test/e2e/**/*.test.ts",
"test-integration-with-reports": "npm run test-integration -- --reporter mocha-junit-reporter --reporter-options mochaFile=reports/integration-results.xml",
"test-e2e-with-reports": "npm run test-e2e -- --reporter mocha-junit-reporter --reporter-options mochaFile=reports/e2e-results.xml",
"test-unit": "mocha test/unit/**/*.test.ts",
"test-unit-watch": "npm run test-unit -- -w --watch-files '**/*.ts'",
"test-unit-with-reports": "npm run test-unit -- --reporter mocha-junit-reporter --reporter-options mochaFile=reports/unit-results.xml",
"version": "oclif readme && git add README.md",
"semantic-release": "shx cp ./dist/config.production.js ./dist/config.js && semantic-release"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/contentful/contentful-merge/issues",
"keywords": [
"contentful",
"merge",
"cli"
],
"types": "dist/index.d.ts",
"release": {
"branches": [
"main",
{
"name": "next",
"channel": "next",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/github"
]
}
}