UNPKG

@darlean/base

Version:

Base types and definitions for creating Darlean actors and suites

63 lines (62 loc) 2.25 kB
{ "name": "@darlean/base", "version": "2.0.0-alpha.19", "description": "Base types and definitions for creating Darlean actors and suites", "main": "lib/index.js", "homepage": "https://darlean.io", "repository": { "type": "git", "url": "https://gitlab.com/darlean/javascript/repo.git", "directory": "base" }, "scripts": { "build": "shx rm -rf lib/* && tsc", "test": "npm run test:all", "test:all": "jest --verbose --runInBand --config jestconfig.json", "run": "node lib/index.js", "format": "prettier --write \"src/**/*.ts\"", "lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx", "update-deps": "npm install @darlean/utils@latest", "prepublish": "npm run build", "prepublishOnly": "npm run build && npm run lint", "preversion": "npm run format && npm install && npm run update-deps && npm run lint && npm run build", "version": "git add -A src && git add package.json && git add ../package-lock.json && git -C .. tag base-%npm_package_version%", "postversion": "git commit -m \"Version upgrade to base-%npm_package_version%\" && git push && git push --tags", "precommit": "npm run format && npm run lint && npm run build", "npm:version:alpha": "npm version prerelease --preid=alpha --git-tag-version=false", "npm:publish": "npm publish --access=public", "doc": "npx typedoc --skipErrorChecking --json typedoc-out.json & npx docgen typedoc-out.json ./docs/" }, "keywords": [ "Darlean", "Base" ], "author": "Theo van der Donk", "license": "Apache-2.0", "devDependencies": { "@types/jest": "^29.5.11", "@types/node": "^18.19.4", "@types/uuid": "^9.0.7", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "eslint": "^8.56.0", "jest": "^29.7.0", "jest-standard-reporter": "^2.0.0", "prettier": "^2.8.8", "shx": "^0.3.4", "ts-jest": "^29.1.1", "typedoc": "^0.23.28", "typescript": "^4.9.5" }, "files": [ "lib/**/*", "NOTICE" ], "typedoc": { "entryPoint": "./src/index.ts", "tsconfig": "./tsconfig.json" }, "dependencies": { "@darlean/utils": "^2.0.0-alpha.14" } }