This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
generated from HugoDF/microbundle-ts-pkg
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.79 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
{
"name": "alpine-test-utils",
"description": "Utilities for testing Alpine.js components",
"version": "1.0.0",
"source": "src/main.js",
"main": "src/main.js",
"types": "types.d.ts",
"keywords": [
"alpinejs",
"testing",
"jsdom"
],
"files": [
"src/**.js*"
],
"scripts": {
"test:unit": "uvu tests/unit -r esm",
"test:ava": "ava 'tests/ava/*.js'",
"test:uvu": "uvu tests/uvu -r esm",
"test:tape": "tape tests/tape/*.js -r esm",
"test:jest": "jest tests/jest",
"test": "yarn test:unit && yarn test:uvu && yarn test:tape && yarn test:ava && yarn test:jest",
"build": "jsdoc -t node_modules/tsd-jsdoc/dist -r src -d .",
"lint": "xo src tests",
"fmt": "xo src tests --fix",
"format": "yarn fmt",
"release": "yarn build && np"
},
"peerDependencies": {
"alpinejs": "^2.3.1"
},
"dependencies": {
"jsdom": "^19.0.0",
"wait-for-expect": "^3.0.2"
},
"devDependencies": {
"alpinejs": "^2.3.1",
"ava": "^3.7.0",
"esm": "^3.2.25",
"jest": "^27.0.1",
"jsdoc": "^3.6.4",
"np": "^7.0.0",
"tape": "^5.0.1",
"tsd-jsdoc": "^2.5.0",
"uvu": "^0.5.1",
"xo": "^0.37.1"
},
"xo": {
"prettier": true,
"space": true,
"globals": [
"jest",
"document"
],
"rules": {
"unicorn/prefer-text-content": 0
}
},
"ava": {
"require": [
"esm"
]
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HugoDF/alpine-test-utils.git"
},
"author": "Hugo",
"bugs": {
"url": "https://github.com/HugoDF/alpine-test-utils/issues"
},
"homepage": "https://github.com/HugoDF/alpine-test-utils#readme"
}