UNPKG

acorn-typescript

Version:
54 lines (53 loc) 1.69 kB
{ "name": "acorn-typescript", "version": "1.4.13", "description": "Alternative, TypeScript parser", "source": "src/index.ts", "main": "lib/index.js", "module": "lib/index.mjs", "types": "lib/index.d.ts", "scripts": { "build": "microbundle --define process.env.NODE_ENV=production --no-sourcemap --tsconfig ./tsconfig.json --format esm,cjs", "test": "jest --collect-coverage --silent", "test:test262": "ts-node -T __test__/run_test262.ts", "release-major": "yarn build && yarn test && standard-version --release-as major", "release-minor": "yarn build && yarn test && standard-version --release-as minor", "release-patch": "yarn build && yarn test && standard-version --release-as patch" }, "exports": { ".": [ { "import": "./lib/index.mjs", "require": "./lib/index.js", "default": "./lib/index.js" }, "./lib/index.js" ] }, "repository": { "type": "git", "url": "git+https://github.com/TyrealHu/acorn-typescript.git" }, "author": "tyrealhu", "license": "MIT", "bugs": { "url": "https://github.com/TyrealHu/acorn-typescript/issues" }, "homepage": "https://github.com/TyrealHu/acorn-typescript#readme", "devDependencies": { "@types/jest": "^24.1.0", "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", "jest": "^24.1.0", "microbundle": "^0.15.1", "standard-version": "^9.5.0", "ts-jest": "^26.0.0", "ts-node": "^10.9.1", "typescript": "^4.8.4", "test262": "git+https://github.com/tc39/test262.git#dac69563480b9f22709fd49d61a32b3a0513b6b1", "test262-parser-runner": "^0.5.0" }, "peerDependencies": { "acorn": ">=8.9.0" } }