-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "@sambauers/camo",
"displayName": "Contentful Active Migration Organiser (CAMO)",
"description": "Applies and provides status for migrations associated with the target Contentful space.",
"version": "2.0.2",
"repository": {
"type": "git",
"url": "git://github.com/sambauers/camo.git"
},
"homepage": "https://github.com/sambauers/camo",
"author": {
"name": "Sam Bauers",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"bin": {
"camo": "bin/index.js"
},
"files": [
"license.md",
"bin/**/*",
"src/**/*"
],
"packageManager": "[email protected]",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint .",
"test": "jest --coverage",
"build": "pnpm clean && pnpm lint && pnpm test && tsc",
"copy-release-files": "node --loader ts-node/esm bin/copy-release-files.ts",
"release": "pnpm build && pnpm copy-release-files && pnpm publish dist",
"dev": "ts-node bin/index.ts",
"regenerate-pnpm-lock": "rm -rf ./node_modules & rm pnpm-lock.yaml & pnpm install"
},
"dependencies": {
"commander": "11.0.0",
"common-tags": "1.8.2",
"contentful-management": "10.39.1",
"contentful-migration": "4.14.1",
"dotenv": "16.3.1",
"inquirer": "9.2.8"
},
"devDependencies": {
"@types/common-tags": "1.8.1",
"@types/eslint": "8.44.0",
"@types/inquirer": "9.0.3",
"@types/jest": "29.5.3",
"@types/node": "20.4.4",
"@types/prettier": "2.7.3",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.6.2",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}