138 lines
3.1 KiB
JSON
138 lines
3.1 KiB
JSON
|
|
{
|
||
|
|
"name": "@krivega/cc",
|
||
|
|
"version": "4.0.0",
|
||
|
|
"main": "./index.js",
|
||
|
|
"author": {
|
||
|
|
"name": "Krivega Dmitriy",
|
||
|
|
"email": "mr.krivega@gmail.com",
|
||
|
|
"url": "https://krivega.com"
|
||
|
|
},
|
||
|
|
"license": "GPL-3.0-or-later",
|
||
|
|
"engines": {
|
||
|
|
"node": ">=14.7.0"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"rm": "rimraf out",
|
||
|
|
"lint": "TIMING=1 eslint \"**/*.ts*\"",
|
||
|
|
"test": "jest",
|
||
|
|
"test:watch": "jest --watch",
|
||
|
|
"release": "release-it",
|
||
|
|
"release:npm": "npm run build && ./publish.js",
|
||
|
|
"dev": "tsup-node --watch",
|
||
|
|
"build": "tsup-node --dts"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@release-it/conventional-changelog": "^7.0.0",
|
||
|
|
"@swc/core": "^1.3.86",
|
||
|
|
"@swc/jest": "^0.2.29",
|
||
|
|
"@types/bluebird": "^3.5.38",
|
||
|
|
"@types/debug": "^4.1.7",
|
||
|
|
"@types/getos": "^3.0.1",
|
||
|
|
"@types/is-ci": "^3.0.0",
|
||
|
|
"@types/jest": "^29.2.4",
|
||
|
|
"@types/lodash": "^4.14.191",
|
||
|
|
"@types/ws": "^8.5.4",
|
||
|
|
"cypress": "^13.2.0",
|
||
|
|
"esbuild": "^0.16.5",
|
||
|
|
"eslint": "^7.32.0",
|
||
|
|
"eslint-config-custom": "latest",
|
||
|
|
"jest": "^29.3.1",
|
||
|
|
"nock": "^13.2.9",
|
||
|
|
"release-it": "^16.1.5",
|
||
|
|
"rimraf": "^3.0.2",
|
||
|
|
"tsconfig": "*",
|
||
|
|
"tsup": "^7.0.0",
|
||
|
|
"typescript": "^4.7.4"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@cypress/commit-info": "^2.2.0",
|
||
|
|
"axios": "^1.2.0",
|
||
|
|
"axios-retry": "^3.4.0",
|
||
|
|
"bluebird": "^3.7.2",
|
||
|
|
"chalk": "^4.1.2",
|
||
|
|
"commander": "^10.0.0",
|
||
|
|
"common-path-prefix": "^3.0.0",
|
||
|
|
"cy2": "^3.4.2",
|
||
|
|
"date-fns": "^2.30.0",
|
||
|
|
"debug": "^4.3.4",
|
||
|
|
"execa": "^5.1.1",
|
||
|
|
"fast-safe-stringify": "^2.1.1",
|
||
|
|
"getos": "^3.2.1",
|
||
|
|
"globby": "^11.1.0",
|
||
|
|
"is-absolute": "^1.0.0",
|
||
|
|
"lil-http-terminator": "^1.2.3",
|
||
|
|
"lodash": "^4.17.21",
|
||
|
|
"nanoid": "^3.3.4",
|
||
|
|
"plur": "^4.0.0",
|
||
|
|
"pretty-ms": "^7.0.1",
|
||
|
|
"source-map-support": "^0.5.21",
|
||
|
|
"table": "^6.8.1",
|
||
|
|
"tmp-promise": "^3.0.3",
|
||
|
|
"ts-pattern": "^4.3.0",
|
||
|
|
"ws": "^8.13.0"
|
||
|
|
},
|
||
|
|
"bin": "./bin/cli.js",
|
||
|
|
"files": [
|
||
|
|
"*"
|
||
|
|
],
|
||
|
|
"tsup": {
|
||
|
|
"entry": [
|
||
|
|
"./index.ts",
|
||
|
|
"./bin/*.ts",
|
||
|
|
"./plugin/*.ts",
|
||
|
|
"./support/*.ts"
|
||
|
|
],
|
||
|
|
"external": [
|
||
|
|
"cypress"
|
||
|
|
],
|
||
|
|
"format": [
|
||
|
|
"cjs",
|
||
|
|
"esm"
|
||
|
|
],
|
||
|
|
"splitting": false,
|
||
|
|
"shims": true,
|
||
|
|
"clean": true,
|
||
|
|
"sourcemap": "inline",
|
||
|
|
"platform": "node",
|
||
|
|
"target": "esnext"
|
||
|
|
},
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"import": "./index.mjs",
|
||
|
|
"require": "./index.js",
|
||
|
|
"types": "./index.d.ts"
|
||
|
|
},
|
||
|
|
"./plugin": {
|
||
|
|
"import": "./plugin/index.js",
|
||
|
|
"require": "./plugin/index.js",
|
||
|
|
"types": "./plugin/index.d.ts"
|
||
|
|
},
|
||
|
|
"./support": {
|
||
|
|
"import": "./support/index.js",
|
||
|
|
"require": "./support/index.js",
|
||
|
|
"types": "./support/index.d.ts"
|
||
|
|
},
|
||
|
|
"./package.json": "./package.json"
|
||
|
|
},
|
||
|
|
"release-it": {
|
||
|
|
"github": {
|
||
|
|
"release": true,
|
||
|
|
"releaseName": "v${version}"
|
||
|
|
},
|
||
|
|
"npm": {
|
||
|
|
"publish": false
|
||
|
|
},
|
||
|
|
"git": {
|
||
|
|
"requireCleanWorkingDir": false,
|
||
|
|
"commitMessage": "chore: release v${version}",
|
||
|
|
"tagName": "v${version}"
|
||
|
|
},
|
||
|
|
"plugins": {
|
||
|
|
"@release-it/conventional-changelog": {
|
||
|
|
"preset": "angular",
|
||
|
|
"infile": "../../CHANGELOG.md"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|