-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1004 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1004 Bytes
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
{
"name": "@contentstack/cli-variants",
"version": "1.1.5",
"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.2.4",
"@oclif/test": "^4.1.9",
"@types/node": "^20.17.17",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@contentstack/cli-utilities": "^1.8.2",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"winston": "^3.17.0"
}
}