-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
77 lines (77 loc) · 2.14 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
{
"name": "contentful-batch-libs",
"version": "0.0.0-determined-by-semantic-release",
"description": "Library modules used by contentful batch utility CLI tools.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist && rimraf coverage",
"lint": "eslint lib test/* test",
"pretest": "npm run lint",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:watch": "npm run test -- --watch",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"dependencies": {
"date-fns": "^2.28.0",
"figures": "3.2.0",
"https-proxy-agent": "^7.0.2",
"uuid": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"contentful": "^11.0.2",
"contentful-management": "^11.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "9.1.7",
"jest": "^29.7.0",
"listr2": "^8.0.0",
"rimraf": "^6.0.0",
"semantic-release": "^22.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-batch-libs.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"contentful",
"batch"
],
"author": "Contentful <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentful/contentful-batch-libs/issues"
},
"homepage": "https://github.com/contentful/contentful-batch-libs#readme"
}