zora
Version:
the lightest yet the fastest javascript testing library
58 lines (57 loc) • 1.16 kB
JSON
{
"name": "zora",
"version": "6.0.4",
"description": "the lightest yet the fastest javascript testing library",
"keywords": [
"test",
"testing",
"unit",
"tap",
"assertion",
"assert",
"tdd",
"bdd",
"ava",
"tape",
"jest",
"uvu",
"mocha"
],
"type": "module",
"main": "./dist/index.cjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"prettier": {
"singleQuote": true
},
"scripts": {
"build:types": "rollup -c rollup-types.js",
"build:js": "rollup -c rollup.js",
"build": "npm run build:js && npm run build:types",
"build:watch": "rollup -w -c rollup.js",
"test": "node test/run.js"
},
"devDependencies": {
"zora-assert": "*"
},
"files": [
"dist"
],
"author": "@lorenzofox3 <Laurent RENARD>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lorenzofox3/zora.git"
}
}