-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) Β· 4.49 KB
/
package.json
File metadata and controls
172 lines (172 loc) Β· 4.49 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "contentful-migration",
"version": "0.0.0-development",
"description": "Migration tooling for contentful",
"author": "Contentful GmbH",
"license": "MIT",
"main": "dist/index",
"keywords": [
"contentful",
"content model",
"content type",
"migration",
"migrations",
"migrate"
],
"directories": {
"test": "test",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-migration"
},
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"build-dev": "npm run clean && tsc -p tsconfig-dev.json",
"clean": "rimraf dist",
"format:fix": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"prepare": "npm run build && husky install",
"test": "NOCK_RECORD=0 npm run build && npm run test:unit && npm run test:integration && npm run test:e2e && npm run lint && npm run test:typescript-declaration",
"test:watch": "npm run test:unit -- --watch",
"test:unit": "NODE_ENV=test vitest run --project unit",
"test:integration": "NODE_ENV=test vitest run --project integration",
"posttest": "node test/teardown.js",
"test:e2e": "NODE_ENV=test vitest run --project e2e",
"test:typescript-declaration": "tsc --strict --noEmit index.d.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"semantic-release": "semantic-release",
"test:unit:debug": "NODE_ENV=test vitest --project unit",
"test:integration:debug": "NODE_ENV=test vitest --project integration",
"test:e2e:debug": "NODE_ENV=test vitest --project e2e",
"cm": "git-cz"
},
"files": [
"README.md",
"index.d.ts",
"CHANGELOG.md",
"bin",
"dist",
"docs"
],
"dependencies": {
"@hapi/hoek": "^11.0.4",
"axios": "^1.12.2",
"bluebird": "^3.7.2",
"callsites": "^3.1.0",
"cardinal": "^2.1.1",
"chalk": "^4.0.0",
"contentful-management": "12.0.0-new-beta.14",
"didyoumean2": "^7.0.4",
"https-proxy-agent": "^5.0.0",
"inquirer": "^8.1.2",
"joi": "^17.4.0",
"kind-of": "^6.0.3",
"listr2": "^3.13.5",
"lodash": "^4.17.15",
"p-throttle": "^4.1.1",
"uuid": "^10.0.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@contentful/eslint-config-backend": "^11.0.2",
"@lavamoat/allow-scripts": "^3.4.1",
"@semantic-release/changelog": "^6.0.0",
"@types/chai": "^4.2.11",
"@types/hoek": "^4.1.3",
"@types/inquirer": "^9.0.4",
"@types/joi": "^17.2.3",
"@types/lodash": "^4.14.149",
"@types/node": "^22.3.0",
"@types/sinon-chai": "^3.2.4",
"@types/yargs": "^17.0.28",
"chai": "^4.2.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"dirty-chai": "^2.0.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.4",
"lint-staged": "^13.1.0",
"nixt": "^0.5.1",
"nock": "^13.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"semantic-release": "^25.0.2",
"sinon": "^18.0.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.16",
"strip-ansi": "^6.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.9.4",
"vitest": "^4.0.8"
},
"bin": {
"contentful-migration": "./bin/contentful-migration"
},
"engines": {
"node": ">=8.0.0"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"channel": "beta",
"prerelease": true
},
{
"name": "dev",
"channel": "dev",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint"
],
"*.{ts,tsx}": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"lavamoat": {
"allowScripts": {
"vitest>vite>esbuild": true
}
}
}