50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "parse-statements",
|
|
"version": "1.0.11",
|
|
"description": "Fast and easy parser of statements in source code in any language ✂️",
|
|
"author": "uid11",
|
|
"bugs": "https://github.com/joomcode/parse-statements/issues",
|
|
"devDependencies": {
|
|
"prettier": ">=3.4",
|
|
"typescript": ">=5.7"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./index.js",
|
|
"require": "./index.cjs",
|
|
"types": "./index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"getPreparedOptions.cjs",
|
|
"getPreparedOptions.js",
|
|
"index.cjs",
|
|
"index.js",
|
|
"index.d.ts",
|
|
"types.d.ts"
|
|
],
|
|
"homepage": "https://github.com/joomcode/parse-statements#readme",
|
|
"keywords": [
|
|
"parse",
|
|
"parser",
|
|
"source",
|
|
"statement"
|
|
],
|
|
"license": "MIT",
|
|
"packageManager": "npm@10",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/joomcode/parse-statements.git"
|
|
},
|
|
"scripts": {
|
|
"prettier": "prettier --cache --cache-strategy=content --write .",
|
|
"prebuild": "rm -f *.cjs *.js *.d.ts",
|
|
"build": "tsc",
|
|
"postbuild": "node ./convertEsmToCjs.js",
|
|
"test": "export _START=$(date +%s%3N) && npm run prettier && npm run build && node ./index.spec.js",
|
|
"prepublishOnly": "npm test"
|
|
},
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"types": "./index.d.ts"
|
|
}
|