-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.23 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
{
"name": "pava",
"version": "1.1.0",
"author": {
"name": "Tomer Aberbach",
"email": "tomer@aberba.ch",
"url": "https://tomeraberba.ch"
},
"description": "Parameterized tests for ava!",
"keywords": [
"ava",
"test",
"runner",
"testing",
"parameterized",
"parametric",
"parameterize",
"parameterized testing"
],
"homepage": "https://github.com/TomerAberbach/pava",
"repository": "TomerAberbach/pava",
"bugs": {
"url": "https://github.com/TomerAberbach/pava/issues"
},
"license": "Apache-2.0",
"files": [
"dist",
"src/index.d.ts"
],
"type": "module",
"engines": {
"node": ">= 12.17"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./src/index.d.ts",
"scripts": {
"prepare": "tomer install",
"lint": "tomer lint -g",
"test": "tomer test",
"build": "tomer build -f \"esm,cjs\" src/index.js",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"ava": ">=3.0.0"
},
"devDependencies": {
"ava": "3.15.0",
"ava-fast-check": "4.0.2",
"fast-check": "2.17.0",
"tomer": "0.0.17",
"tsd": "0.17.0"
}
}