-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
108 lines (108 loc) · 3.19 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "cli-testing-library",
"version": "0.0.0-semantically-released",
"description": "Simple and complete CLI testing utilities that encourage good testing practices.",
"main": "dist/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/cli-testing-library.cjs.js",
"import": "./dist/cli-testing-library.esm.js"
},
"./extend-expect": {
"types": "./extend-expect.d.ts",
"require": "./dist/extend-expect.js",
"import": "./dist/extend-expect.js"
}
},
"types": "types/index.d.ts",
"module": "dist/cli-testing-library.esm.js",
"umd:main": "dist/cli-testing-library.umd.js",
"source": "src/index.js",
"keywords": [
"testing",
"cli",
"unit",
"integration",
"functional",
"end-to-end",
"e2e"
],
"author": "Corbin Crutchley <[email protected]> (https://crutchcorn.com)",
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "kcd-scripts build --no-ts-defs --ignore \"**/__tests__/**,**/__node_tests__/**,**/__mocks__/**\" && kcd-scripts build --no-ts-defs --bundle --no-clean",
"format": "kcd-scripts format",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --watch --runInBand",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"typecheck": "kcd-scripts typecheck --build types"
},
"files": [
"dist",
"types/*.d.ts",
"extend-expect.js",
"extend-expect.d.ts",
"src/user-event/**/*.ts",
"src/user-event/*.ts"
],
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.12.5",
"jest-matcher-utils": "^27.4.2",
"lz-string": "^1.4.4",
"pretty-format": "^27.0.2",
"redent": "^3.0.0",
"slice-ansi": "^4.0.0",
"strip-ansi": "^6.0.1",
"strip-final-newline": "^2.0.0",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@types/lz-string": "^1.3.34",
"@types/strip-final-newline": "^3.0.0",
"chalk": "^4.1.2",
"has-ansi": "^3.0.0",
"inquirer": "^8.2.0",
"jest-in-case": "^1.0.2",
"jest-watch-select-projects": "^2.0.0",
"kcd-scripts": "^12.2.0",
"typescript": "^4.7.2"
},
"eslintConfig": {
"extends": [
"./node_modules/kcd-scripts/eslint.js",
"plugin:import/typescript"
],
"rules": {
"@typescript-eslint/prefer-includes": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"import/prefer-default-export": "off",
"import/no-unassigned-import": "off",
"import/no-useless-path-segments": "off",
"no-console": "off",
"import/consistent-type-specifier-style": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/crutchcorn/cli-testing-library"
},
"bugs": {
"url": "https://github.com/crutchcorn/cli-testing-library/issues"
},
"homepage": "https://github.com/crutchcorn/cli-testing-library#readme"
}