-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 741 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 741 Bytes
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
{
"name": "pta",
"version": "1.3.0",
"description": "Test runner for nodejs using zora",
"type": "module",
"bin": {
"pta": "src/bin.js"
},
"exports": {
"./package.json": "./package.json"
},
"scripts": {
"test": "node test/samples/index.js"
},
"author": "@lorenzofox3 <Laurent RENARD>",
"license": "MIT",
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/lorenzofox3/zora.git"
},
"files": [
"src"
],
"keywords": [
"zora",
"test",
"testing",
"cli",
"test-runner"
],
"dependencies": {
"arg": "^5.0.2",
"globby": "^14.0.0",
"zora-reporters": "*"
},
"peerDependencies": {
"zora": "^6"
}
}