-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "zora-reporters",
"version": "2.0.0",
"description": "a set of reporter for zora testing library",
"type": "module",
"main": "./dist/index.cjs",
"bin": {
"zr": "./src/bin.js"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"scripts": {
"test": "pta ./src/*.test.js ./src/**/*.test.js ./src/diff/*.test.js ./src/diff/**/*.test.js",
"build:types": "rollup -c rollup-types.js",
"build:cjs": "rollup -c rollup.js",
"build": "npm run build:types && npm run build:cjs"
},
"files": [
"src",
"dist",
"!*.test.js",
"!src/types"
],
"repository": {
"type": "git",
"url": "https://github.com/lorenzofox3/zora.git"
},
"author": "@lorenzofox3 <Laurent RENARD>",
"license": "MIT",
"prettier": {
"singleQuote": true
},
"dependencies": {
"arg": "^5.0.2",
"colorette": "^2.0.20",
"diff": "^7.0.0"
}
}