UNPKG

ts-dev-stack

Version:

Development stack for TypeScript libraries

72 lines (71 loc) 1.67 kB
{ "name": "ts-dev-stack", "version": "1.22.1", "description": "Development stack for TypeScript libraries", "keywords": [ "tsds", "dev", "development", "mocha", "rollup", "stack", "test", "typescript" ], "homepage": "https://github.com/kmalakoff/ts-dev-stack", "repository": { "type": "git", "url": "git+ssh://git@github.com/kmalakoff/ts-dev-stack.git" }, "license": "MIT", "author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)", "type": "module", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./package.json": "./package.json" }, "main": "dist/cjs/index.js", "source": "src/index.ts", "types": "dist/cjs/index.d.ts", "bin": { "tsds": "bin/cli.js" }, "files": [ "dist", "bin" ], "scripts": { "build": "tsds build", "format": "tsds format", "prepublishOnly": "tsds validate", "test": "tsds test:node --no-timeouts", "test:engines": "nvu engines tsds test:node --no-timeouts", "version": "tsds version" }, "dependencies": { "cross-spawn-cb": "^3.1.0", "exit-compat": "^1.0.4", "getopts-compat": "^2.2.6", "install-module-linked": "^1.5.0", "queue-cb": "^1.6.3", "resolve": "^1.22.11", "tsds-lib": "^1.21.1" }, "devDependencies": { "@types/mocha": "*", "@types/node": "*", "module-link-unlink": "^1.1.0", "node-version-use": "*", "os-shim": "^0.1.3", "short-hash": "^1.0.0", "ts-dev-stack": "*", "tsds-config": "*", "tsds-lib-test": "^1.20.2" }, "engines": { "node": ">=0.8" } }