-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "@kontent-ai/cli",
"version": "0.8.2",
"description": "Command line interface tool that can be used for generating and runningKontent.ai migration scripts",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"lint": "eslint \"src/**/*.ts\" && prettier --check \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"debug": "node --inspect ./lib/index.js migration run --all -e DEV",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"npx eslint --fix",
"npx prettier --write"
]
},
"bin": {
"kontent": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kontent-ai/cli.git"
},
"author": "Kontent s.r.o.",
"license": "MIT",
"bugs": {
"url": "https://github.com/kontent-ai/cli/issues"
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"printWidth": 250
},
"homepage": "https://github.com/kontent-ai/cli#readme",
"dependencies": {
"@kontent-ai/backup-manager": "4.2.4",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"@kontent-ai/management-sdk": "^5.0.0"
},
"devDependencies": {
"@babel/core": "~7.18.10",
"@babel/preset-env": "~7.18.10",
"@babel/preset-typescript": "~7.18.6",
"@types/jest": "~28.1.7",
"@types/node": "~18.14.2",
"@types/yargs": "~17.0.11",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-jest": "~28.1.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "~28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescript": "~4.9.5"
}
}