-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
135 lines (135 loc) · 3.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
{
"name": "contentful-import",
"version": "0.0.0-determined-by-semantic-release",
"description": "this tool allows you to import JSON dump exported by contentful-export",
"main": "dist/index.mjs",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"engines": {
"node": ">=18"
},
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"bin": {
"contentful-import": "./bin/contentful-import"
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist && rimraf coverage",
"lint": "npm run lint:main && npm run lint:tests",
"lint:main": "eslint lib bin/contentful-import && tsc --project tsconfig.json",
"lint:tests": "eslint test && tsc --project tsconfig.test.json",
"pretest": "npm run lint && npm run build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --testPathPattern=test/unit --runInBand --coverage",
"test:unit:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch --testPathPattern=test/unit",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "jest --testPathPattern=test/integration",
"test:integration:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch --testPathPattern=test/integration",
"test:integration:watch": "npm run test:integration -- --watch",
"semantic-release": "semantic-release",
"prepush": "npm run test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-import.git"
},
"keywords": [
"contentful",
"contentful-import"
],
"author": "Contentful <opensource@contentful.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentful/contentful-import/issues"
},
"tsup": {
"entry": [
"lib/index.ts",
"lib/usageParams.ts"
],
"format": [
"cjs",
"esm"
],
"clean": true,
"dts": true
},
"dependencies": {
"@discoveryjs/json-ext": "^0.6.3",
"bluebird": "^3.7.2",
"cli-table3": "^0.6.5",
"contentful-batch-libs": "^9.6.0",
"contentful-management": "^11.40.3",
"date-fns": "^2.30.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"joi": "^17.13.1",
"listr": "^0.14.1",
"listr-update-renderer": "^0.5.0",
"listr-verbose-renderer": "^0.6.0",
"lodash": "^4.17.21",
"p-queue": "^6.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"cz-conventional-changelog": "^3.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"semantic-release": "^24.2.0",
"ts-jest": "^29.1.3",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"files": [
"bin",
"dist",
"example-config.json"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main",
{
"name": "beta",
"channel": "beta",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}