@palmares/tests
Version:
This defines a default test framework testing stuff inside of the framework
49 lines • 1.49 kB
JSON
{
"name": "@palmares/tests",
"version": "0.2.7",
"description": "This defines a default test framework testing stuff inside of the framework",
"main": "./dist/src/index.cjs",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"require": "./dist/src/index.cjs"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/palmaresHQ/palmares.git"
},
"keywords": [
"palmares",
"test",
"package"
],
"author": "Nicolas Melo",
"license": "MIT",
"bugs": {
"url": "https://github.com/palmaresHQ/palmares/issues"
},
"homepage": "https://github.com/palmaresHQ/palmares#readme",
"dependencies": {
"@palmares/core": "0.2.6"
},
"scripts": {
"clear": "rimraf ./dist",
"build:types": "tsc --project tsconfig.types.json",
"build:cjs:esm": "tsup ./src --out-dir ./dist/src --format cjs,esm --silent --no-splitting",
"build": "pnpm run clear && pnpm run build:cjs:esm && pnpm run build:types",
"build:types:watch": "tsc --project tsconfig.types.json --watch --preserveWatchOutput",
"build:cjs:esm:watch": "tsup ./src --out-dir ./dist/src --format cjs,esm --watch --silent --no-splitting",
"build:watch": "pnpm run build:cjs:esm:watch & pnpm run build:types:watch"
}
}