@lapidist/template-typescript-library
Version:
Lapidist template-typescript-library
60 lines (59 loc) • 1.95 kB
JSON
{
"name": "@lapidist/template-typescript-library",
"version": "1.2.0",
"description": "Lapidist template-typescript-library",
"author": "Brett Dorrans <hello@lapidist.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bylapidist/template-typescript-library.git"
},
"bugs": {
"url": "https://github.com/bylapidist/template-typescript-library/issues"
},
"homepage": "https://github.com/bylapidist/template-typescript-library#readme",
"publishConfig": {
"access": "public"
},
"main": "dist/es5",
"typings": "dist/es5",
"keywords": [
"lapidist",
"template-typescript-library"
],
"scripts": {
"lint": "eslint . --ext js,ts,tsx",
"fix": "eslint --fix . --ext js,ts,tsx",
"watch": "cross-env NODE_ENV=development tsc -w",
"watch:tests": "cross-env NODE_ENV=test jest --watch",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:es5",
"build:es5": "cross-env NODE_ENV=production tsc --outDir dist/es5 -p tsconfig.json",
"build:docs": "typedoc src/index.ts",
"test": "npm run lint && npm run test:unit",
"test:unit": "cross-env NODE_ENV=test jest --coverage --passWithNoTests",
"update:snapshots": "cross-env NODE_ENV=test jest -u",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@lapidist/linting": "2.114.4",
"@types/jest": "27.0.0",
"cross-env": "7.0.3",
"husky": "7.0.1",
"jest": "27.0.6",
"lint-staged": "11.1.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.4",
"typedoc": "0.21.5",
"typescript": "4.3.5"
},
"engines": {
"node": ">=16.0.0"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
}
}