-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.68 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
{
"name": "@marko/testing-library",
"description": "Simple and complete Marko testing utilities that encourage good testing practices.",
"version": "6.2.0",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"browser": "dist/index-browser.js",
"bugs": "https://github.com/marko-js/testing-library/issues",
"dependencies": {
"@testing-library/dom": "^9",
"jsdom": "^23"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@marko/jest": "^4.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^26.0.23",
"@types/jsdom": "^16.2.10",
"@types/node": "^15.6.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"codecov": "^3.8.2",
"esbuild": "^0.17.18",
"esbuild-jest": "^0.5.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"fixpack": "^4.0.0",
"husky": "^6.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^11.0.0",
"marko": "^4.18.2",
"marko-widgets": "^7.0.1",
"prettier": "^2.3.0",
"standard-version": "^9.3.0",
"typescript": "^4.3.2"
},
"exports": {
".": {
"browser": {
"import": "./dist/index-browser.js",
"default": "./dist/index-browser.js"
},
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./dont-cleanup-after-each": "./dont-cleanup-after-each/index.js"
},
"files": [
"dist",
"dont-cleanup-after-each",
"!**/__tests__",
"!*.tsbuildinfo"
],
"homepage": "https://github.com/marko-js/testing-library",
"keywords": [
"marko",
"testing-library"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"marko": "^3 || ^4 || ^5"
},
"repository": {
"type": "git",
"url": "https://github.com/marko-js/testing-library"
},
"scripts": {
"build": "node build.mjs && tsc",
"ci:report": "codecov",
"ci:test": "jest --ci --coverage",
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
"lint": "tsc && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
"lint:eslint": "eslint -f visualstudio .",
"lint:prettier": "prettier '**/*{.ts,.js,.json,.md,.yml,rc}'",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"release": "standard-version",
"report": "open ./coverage/lcov-report/index.html",
"test": "jest --watch",
"test:inspect": "node --inspect=0.0.0.0 $(which jest) --watch --runInBand --testTimeout 99999999"
},
"types": "dist/index.d.ts"
}