forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (50 loc) · 1.46 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
{
"name": "@packages/errors",
"version": "0.0.0-development",
"description": "Error definitions and utilities for Cypress",
"main": "cjs/index.js",
"module": "esm/index.js",
"browser": "esm/index.js",
"files": [
"cjs/*",
"esm/*"
],
"types": "cjs/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build-prod": "yarn build",
"build:cjs": "rimraf cjs && tsc -p tsconfig.cjs.json",
"build:esm": "rimraf esm && tsc -p tsconfig.esm.json",
"check-ts": "tsc -p tsconfig.cjs.json --noEmit && yarn -s tslint -p tsconfig.cjs.json",
"clean": "rimraf cjs esm",
"lint": "eslint",
"test": "yarn test-unit",
"test-unit": "vitest run",
"test-debug": "vitest --inspect-brk --no-file-parallelism --test-timeout=0",
"tslint": "tslint --config ../ts/tslint.json --project .",
"watch": "yarn build:cjs --watch & yarn build:esm --watch"
},
"dependencies": {
"ansi_up": "5.0.0",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"pluralize": "8.0.0",
"strip-ansi": "6.0.1"
},
"devDependencies": {
"@packages/eslint-config": "0.0.0-development",
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"@types/node": "22.18.7",
"@types/pngjs": "^6.0.5",
"eslint": "^9.31.0",
"jiti": "^2.4.2",
"rimraf": "6.1.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": "eslint --fix"
},
"license": "MIT",
"nx": {}
}