UNPKG

1.06 kBJSONView Raw
1{
2 "name": "zora",
3 "version": "5.0.1",
4 "description": "the lightest yet the fastest javascript testing library",
5 "main": "./dist/index.cjs",
6 "keywords": [
7 "test",
8 "testing",
9 "unit",
10 "tap",
11 "assertion",
12 "assert",
13 "tdd",
14 "bdd",
15 "ava",
16 "tape",
17 "jest",
18 "uvu",
19 "mocha"
20 ],
21 "type": "module",
22 "types": "dist/zora.d.ts",
23 "exports": {
24 "./package.json": "./package.json",
25 ".": {
26 "import": "./dist/index.js",
27 "require": "./dist/index.cjs"
28 },
29 "./cjs": "./dist/index.cjs",
30 "./es": "./dist/index.js"
31 },
32 "prettier": {
33 "singleQuote": true
34 },
35 "scripts": {
36 "build:types": "rollup -c rollup-types.js",
37 "build:js": "rollup -c rollup.js",
38 "build": "npm run build:js && npm run build:types",
39 "build:watch": "rollup -w -c rollup.js",
40 "test": "node test/run.js"
41 },
42 "files": [
43 "dist"
44 ],
45 "author": "@lorenzofox3 <Laurent RENARD>",
46 "license": "MIT",
47 "repository": {
48 "type": "git",
49 "url": "https://github.com/lorenzofox3/zora.git"
50 }
51}