-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 KB
/
package.json
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
{
"name": "@packages/errors",
"version": "0.0.0-development",
"description": "Error definitions and utilities for Cypress",
"main": "index.js",
"browser": "src/index.ts",
"scripts": {
"build": "../../scripts/run-if-ci.sh tsc || echo 'type errors'",
"build-prod": "tsc",
"check-ts": "tsc --noEmit && yarn -s tslint",
"clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
"clean-deps": "rimraf node_modules",
"comparison": "node -r @packages/ts/register test/support/error-comparison-tool.ts",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"test": "yarn test-unit",
"test-electron": "HTML_IMAGE_CONVERSION=1 xvfb-maybe electron --no-sandbox ./node_modules/.bin/_mocha",
"pretest-unit": "yarn clean",
"test-unit": "mocha",
"tslint": "tslint --config ../ts/tslint.json --project ."
},
"dependencies": {
"ansi_up": "5.0.0",
"strip-ansi": "6.0.1"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"@types/chai": "4.2.15",
"@types/mocha": "8.2.2",
"@types/node": "18.17.5",
"@types/pngjs": "^6.0.1",
"ansi-styles": "^5",
"chai": "4.2.0",
"ci-info": "^4.0.0",
"globby": "^11.1.0",
"mocha": "7.0.1",
"pngjs": "^6.0.0",
"rimraf": "5.0.10",
"sinon": "7.5.0",
"terminal-banner": "^1.1.0",
"xvfb-maybe": "^0.2.1"
},
"files": [
"src",
"dist"
],
"types": "src/index.ts",
"nx": {}
}