UNPKG

@sitesoft/ssp-support

Version:

Various tools, data-structures and utils

78 lines (77 loc) 1.85 kB
{ "name": "@sitesoft/ssp-support", "version": "0.2.5", "description": "Various tools, data-structures and utils", "type": "module", "keywords": [ "ssp", "lools", "utils" ], "license": "MIT", "homepage": "https://github.com/sitesoft/ssp-support", "scripts": { "clean": "rimraf dist", "declarations": "tsc -p tsconfig.json", "build:esm": "cross-env BABEL_ENV=esmUnbundled babel src --extensions '.ts' --out-dir 'dist/es' --source-maps", "build": "npm-run-all -l clean -p build:esm declarations", "test": "jest", "coverage": "jest --coverage", "lint": "prettier --config ./.prettierrc --write src/*.ts src/**/*.ts", "prepare": "husky install" }, "main": "./dist/es/index.js", "module": "./dist/es/index.js", "types": "./dist/types/index.d.ts", "files": [ "src", "dist" ], "exports": { ".": "./dist/es/index.js" }, "engines": { "node": ">= 16" }, "devDependencies": { "@babel/cli": "^7.18.10", "@babel/core": "^7.19.1", "@babel/preset-env": "^7.19.1", "@babel/preset-typescript": "^7.18.6", "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-node-resolve": "^14.1.0", "@types/jest": "^29.0.3", "cross-env": "^7.0.3", "husky": "^7.0.4", "jest": "^29.0.3", "npm-run-all": "^4.1.5", "prettier": "^2.7.1", "rimraf": "^3.0.2", "rollup": "^2.79.1", "rollup-plugin-terser": "^7.0.2", "typescript": "^4.8.3", "vue": "^2.7.10" }, "peerDependencies": { "vue": "^2.7.10" }, "repository": { "type": "git", "url": "https://github.com/sitesoft/ssp-support.git" }, "nyc": { "extension": [ ".ts" ] }, "browserslist": [ "last 2 versions", "not ie 11", "not op_mini all" ], "jest": { "testMatch": [ "**/tests/**/*.[jt]s?(x)" ] } }