118 lines
4.1 KiB
JSON
118 lines
4.1 KiB
JSON
{
|
|
"_from": "sucrase@^3.35.0",
|
|
"_id": "sucrase@3.35.0",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
|
|
"_location": "/sucrase",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "sucrase@^3.35.0",
|
|
"name": "sucrase",
|
|
"escapedName": "sucrase",
|
|
"rawSpec": "^3.35.0",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^3.35.0"
|
|
},
|
|
"_requiredBy": [
|
|
"/tailwindcss"
|
|
],
|
|
"_resolved": "https://registry.npmmirror.com/sucrase/-/sucrase-3.35.0.tgz",
|
|
"_shasum": "57f17a3d7e19b36d8995f06679d121be914ae263",
|
|
"_spec": "sucrase@^3.35.0",
|
|
"_where": "/Users/hongbin9/www/botgroup.chat/node_modules/tailwindcss",
|
|
"author": {
|
|
"name": "Alan Pierce",
|
|
"email": "alangpierce@gmail.com"
|
|
},
|
|
"bin": {
|
|
"sucrase": "bin/sucrase",
|
|
"sucrase-node": "bin/sucrase-node"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/alangpierce/sucrase/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"@jridgewell/gen-mapping": "^0.3.2",
|
|
"commander": "^4.0.0",
|
|
"glob": "^10.3.10",
|
|
"lines-and-columns": "^1.1.6",
|
|
"mz": "^2.7.0",
|
|
"pirates": "^4.0.1",
|
|
"ts-interface-checker": "^0.1.9"
|
|
},
|
|
"deprecated": false,
|
|
"description": "Super-fast alternative to Babel for when you can target modern JS runtimes",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.5",
|
|
"@jridgewell/trace-mapping": "^0.3.18",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/mz": "^2.7.4",
|
|
"@types/node": "^20.3.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
|
"@typescript-eslint/parser": "^5.60.1",
|
|
"chalk": "^4",
|
|
"codecov": "^3.8.3",
|
|
"eslint": "^8.43.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "~2.26",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"mocha": "^10.2.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.8.8",
|
|
"sucrase": "^3.34.0",
|
|
"test262-harness": "^10.0.0",
|
|
"ts-interface-builder": "^0.3.3",
|
|
"typescript": "~5.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16 || 14 >=14.17"
|
|
},
|
|
"homepage": "https://github.com/alangpierce/sucrase#readme",
|
|
"keywords": [
|
|
"babel",
|
|
"jsx",
|
|
"typescript",
|
|
"flow"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"name": "sucrase",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/alangpierce/sucrase.git"
|
|
},
|
|
"resolutions": {
|
|
"**/eshost/socket.io": "4.7.0"
|
|
},
|
|
"scripts": {
|
|
"benchmark": "cd benchmark && yarn && sucrase-node ./benchmark.ts",
|
|
"benchmark-compare": "sucrase-node ./benchmark/compare-performance.ts",
|
|
"build": "sucrase-node script/build.ts",
|
|
"check-babel-tests": "sucrase-node spec-compliance-tests/babel-tests/check-babel-tests.ts",
|
|
"clean": "rm -rf ./build ./dist ./dist-self-build ./dist-types ./example-runner/example-repos ./spec-compliance-tests/test262/test262-checkout ./spec-compliance-tests/babel-tests/babel-tests-checkout",
|
|
"fast-build": "sucrase-node script/build.ts --fast",
|
|
"generate": "sucrase-node generator/generate.ts",
|
|
"integration-test": "cd integration-test && yarn && yarn link @sucrase/jest-plugin && mocha --timeout 10000 ./integration-tests.ts",
|
|
"lint": "sucrase-node script/lint.ts",
|
|
"lint-fix": "sucrase-node script/lint.ts --fix",
|
|
"microbenchmark": "sucrase-node benchmark/microbenchmark.ts",
|
|
"prepublishOnly": "yarn clean && yarn build",
|
|
"profile": "node --inspect-brk ./node_modules/.bin/sucrase-node ./benchmark/profile",
|
|
"profile-project": "node --inspect-brk ./node_modules/.bin/sucrase-node ./benchmark/benchmark-project.ts --profile",
|
|
"release": "sucrase-node script/release.ts",
|
|
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
"run-examples": "sucrase-node example-runner/example-runner.ts",
|
|
"test": "yarn lint && yarn test-only",
|
|
"test-only": "mocha './test/**/*.ts'",
|
|
"test-with-coverage": "nyc mocha './test/**/*.ts'",
|
|
"test262": "sucrase-node spec-compliance-tests/test262/run-test262.ts"
|
|
},
|
|
"types": "dist/types/index.d.ts",
|
|
"version": "3.35.0"
|
|
}
|