-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.39 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.39 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
{
"name": "@contentstack/cli-utilities",
"version": "2.0.0-beta.2",
"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:report": "tsc -p test && nyc --reporter=lcov --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"pretest": "tsc -p test",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "npm run lint",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\"",
"test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"contentstack",
"utilities"
],
"files": [
"/npm-shrinkwrap.json",
"/lib"
],
"author": "contentstack",
"license": "MIT",
"dependencies": {
"@contentstack/management": "~1.27.6",
"@contentstack/marketplace-sdk": "^1.5.0",
"@oclif/core": "^4.3.0",
"axios": "^1.13.5",
"chalk": "^4.1.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.17.23",
"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"
},
"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"
}
}