UNPKG

@jalik/hal

Version:

Hypertext Application Language toolbox

67 lines (66 loc) 1.75 kB
{ "name": "@jalik/hal", "version": "1.0.3", "description": "Hypertext Application Language toolbox", "license": "MIT", "keywords": [ "hal", "hypertext", "language", "json", "api", "rest" ], "author": { "name": "Karl Stein", "email": "karl.stein.pro@gmail.com", "url": "https://github.com/jalik" }, "repository": { "type": "git", "url": "https://github.com/jalik/js-hal.git" }, "bugs": { "url": "https://github.com/jalik/js-hal/issues" }, "sideEffects": false, "main": "./cjs/index.js", "module": "./esm/index.js", "types": "./esm/index.d.ts", "files": [ "cjs/", "esm/", "LICENSE.txt", "README.md" ], "scripts": { "build": "npm run build-cjs && npm run build-esm", "build-cjs": "tsc -p tsconfig.cjs.json", "build-esm": "tsc", "clean": "rimraf ./cjs ./esm", "dev-cjs": "tsc --watch -p tsconfig.cjs.json", "dev-esm": "tsc --watch", "dev": "concurrently 'npm:dev-*'", "lint": "eslint --ext .ts .", "lint-fix": "eslint --ext .ts --fix .", "prepare": "npm run clean && npm run build", "prepublishOnly": "npm run lint && npm test", "preversion": "npm run prepublishOnly", "test": "vitest run --passWithNoTests --coverage" }, "devDependencies": { "@babel/cli": "^7.29.7", "@babel/preset-env": "^7.29.7", "@babel/preset-typescript": "^7.29.7", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "@vitest/coverage-v8": "^4.1.7", "concurrently": "^9.2.1", "eslint": "^8.57.1", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.32.0", "rimraf": "^6.1.3", "typescript": "^5.9.3", "vitest": "^4.1.7" } }