This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 2.56 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
{
"name": "@directus/cli",
"version": "9.14.3",
"description": "The official Directus CLI",
"repository": "directus/cli",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"bin": {
"directusctl": "./bin/directus.js",
"directus-ctl": "./bin/directus.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"prebuild": "npm run cleanup",
"build": "tsc --project ./tsconfig.json",
"cleanup": "run-p cleanup:*",
"cleanup:dist": "rimraf ./dist",
"cleanup:coverage": "rimraf ./coverage",
"profile": "clinic flame -- node ./bin/directus",
"lint": "eslint src",
"test": "echo \"No tests exist yet\" && exit 0"
},
"keywords": [
"api",
"client",
"cms",
"directus",
"headless",
"javascript",
"node",
"cli"
],
"author": "João Biondo <[email protected]>",
"license": "MIT",
"dependencies": {
"@directus/format-title": "9.14.1",
"@directus/sdk": "9.14.1",
"@types/yargs": "^17.0.0",
"app-module-path": "^2.2.0",
"chalk": "^4.1.0",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.0",
"cli-ux": "^5.5.1",
"cliui": "^8.0.1",
"cosmiconfig": "^7.0.0",
"csv": "^5.4.0",
"debug": "^4.3.1",
"dot-object": "^2.1.4",
"dotenv": "^10.0.0",
"eventemitter2": "^6.4.4",
"figlet": "^1.5.0",
"fs-extra": "^10.0.0",
"fs-jetpack": "^5.0.0",
"gluegun": "^5.1.2",
"jaro-winkler": "^0.2.8",
"joi": "^17.4.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"liquidjs": "^9.25.0",
"marked": "^4.0.10",
"marked-terminal": "^5.0.0",
"merge-options": "^3.0.4",
"open": "^8.2.0",
"pretty-ms": "^7.0.1",
"redent": "^3.0.0",
"shimmer": "^1.2.1",
"strip-ansi": "^6.0.0",
"yargs": "^17.0.1",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/figlet": "1.5.4",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.0.3",
"@types/js-yaml": "4.0.5",
"@types/marked": "4.0.1",
"@types/marked-terminal": "^3.1.3",
"@types/node": "^18.0.4",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "27.3.1",
"lint-staged": "^13.0.3",
"nock": "13.2.1",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"simple-git-hooks": "^2.8.0",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "4.5.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"packageManager": "^[email protected]"
}