-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 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
{
"name": "@contentstack/cli-variants",
"version": "1.3.8",
"description": "Variants plugin",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "pnpm compile",
"compile": "tsc -b tsconfig.json",
"test": "mocha --require ts-node/register --forbid-only \"test/**/*.test.ts\"",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"test:unit:report": "nyc --extension .ts mocha --require ts-node/register --forbid-only \"test/unit/**/*.test.ts\""
},
"keywords": [
"variant"
],
"author": "antony.raj@contentstack.com",
"license": "MIT",
"devDependencies": {
"@contentstack/cli-dev-dependencies": "^1.3.0",
"@oclif/plugin-help": "^6.2.28",
"@oclif/test": "^4.1.13",
"@types/node": "^20.17.50",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@contentstack/cli-utilities": "~1.17.4",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.28",
"lodash": "^4.17.23",
"mkdirp": "^1.0.4",
"winston": "^3.17.0"
}
}