@dotup/dotup-ts-types
Version:
Typescript types and helper
107 lines (106 loc) • 4.62 kB
JSON
{
"name": "@dotup/dotup-ts-types",
"version": "1.1.1",
"description": "Typescript types and helper",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"browser": "dist/index.umd.js",
"license": "AGPL-3.0-only",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build-ts",
"build-ts": "npm run lint && npm run clean-dist && tsc -p tsconfig.build.json && npm run copy-static-assets",
"build-test": "npm run clean-dist && tsc -p tsconfig.json && npm run copy-static-assets",
"build-esnext": "npm run lint && npm run clean-dist && tsc -p tsconfig.esnext.json && npm run copy-static-assets",
"build-r": "npm run lint && npm run clean-dist && rollup -c && npm run copy-static-assets",
"release": "npm run release-ts",
"release-ts": "npm run gh-pages && npm run build-ts && npm run test && git push && npm run publish-pnpm",
"release-esnext": "npm run gh-pages && npm run build-esnext && npm run test && git push && npm run publish-pnpm",
"release-r": "npm run gh-pages && npm run build-r && npm run test && git push && npm run publish-pnpm",
"postversion": "git push && git push --tags",
"clean-dist": "rimraf dist",
"clean-node_modules": "rimraf node_modules",
"test": "mocha",
"test-build": "npm run build-test && npm run test",
"coverage": "npm run DOESNOTWORK && npm run build-test && nyc mocha",
"test-jest": "npm run build-test && jest --forceExit --verbose",
"test-mocha": "node node_modules/mocha/bin/mocha --require ts-node/register test/*.test.ts --reporter spec",
"coverage-jest": "npm run build-test && jest --forceExit --coverage --verbose",
"coveralls-jest": "npm run coverage-jest && cat ./tests/coverage/lcov.info | coveralls",
"lint": "tsc -p tsconfig.json --noEmit && eslint \"**/*.{ts,tsx}\" --quiet --fix",
"docs": "typedoc --mode file --out docs src --exclude \"**/*+(index|.spec|.test|.e2e).ts\"",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"publish-npm": "npm publish",
"publish-pnpm": "pnpm publish",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/sample.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\"",
"watch-debug-nodemon": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"postpublish": "git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\" && git push origin --tags",
"commit-release": "git commit -a -m \"Release v%npm_package_version%\" && git push && git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\" && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotupNET/dotup-ts-types.git"
},
"keywords": [
"several",
"typescript",
"helper",
"functions"
],
"author": "Peter Ullrich",
"bugs": {
"url": "https://github.com/dotupNET/dotup-ts-types/issues"
},
"homepage": "https://github.com/dotupNET/dotup-ts-types#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/chai": "^4.2.9",
"@types/concurrently": "^5.1.0",
"@types/eslint": "^6.1.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@types/shelljs": "^0.8.6",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"del": "^5.1.0",
"dotup-ts-git-wrapper": "1.0.0",
"eslint": "^6.8.0",
"gh-pages": "^2.2.0",
"gulp": "^4.0.2",
"gulp-eslint": "6.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-mocha": "^7.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typedoc": "^2.2.4",
"gulp-typescript": "^5.0.1",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "0.26.0",
"shelljs": "^0.8.3",
"ts-node": "^8.6.2",
"tslib": "^1.11.1",
"typedoc": "^0.16.10",
"typescript": "^3.8.2"
}
}