-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.12 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.12 KB
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
{
"name": "@contentstack/cli-utilities",
<<<<<<< HEAD
"version": "2.0.0-beta.6",
=======
"version": "1.18.1",
>>>>>>> main
"description": "Utilities for contentstack projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "pnpm compile",
"build": "pnpm compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"test": "mocha \"test/unit/**/*.test.ts\"",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"contentstack",
"utilities"
],
"files": [
"/npm-shrinkwrap.json",
"/lib"
],
"author": "contentstack",
"license": "MIT",
"dependencies": {
"@contentstack/management": "~1.29.1",
"@contentstack/marketplace-sdk": "^1.5.0",
"@oclif/core": "^4.8.3",
"axios": "^1.13.5",
"chalk": "^5.6.2",
"cli-cursor": "^3.1.0",
"cli-progress": "^3.12.0",
"cli-table": "^0.3.11",
"conf": "^10.2.0",
"dotenv": "^16.6.1",
"figures": "^3.2.0",
"inquirer": "12.11.1",
"inquirer-search-checkbox": "^1.0.0",
"inquirer-search-list": "^1.2.6",
"js-yaml": "^4.1.1",
"klona": "^2.0.6",
"lodash": "^4.18.1",
"mkdirp": "^1.0.4",
"open": "^8.4.2",
"ora": "^5.4.1",
"papaparse": "^5.5.3",
"recheck": "~4.4.5",
"rxjs": "^6.6.7",
"traverse": "^0.6.11",
"tty-table": "^4.2.3",
"unique-string": "^2.0.0",
"uuid": "^9.0.1",
"winston": "^3.17.0",
"xdg-basedir": "^4.0.0"
},
"overrides": {
"@oclif/core": {
"picomatch": "^4.0.4"
}
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/inquirer": "^9.0.8",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^18.11.9",
"@types/sinon": "^21.0.0",
"@types/traverse": "^0.6.37",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^6.0.62",
"eslint-config-oclif-typescript": "^3.1.14",
"fancy-test": "^2.0.42",
"mocha": "10.8.2",
"nyc": "^15.1.0",
"sinon": "^21.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
}
}