gex
Version:
Glob expressions for JavaScript
45 lines (44 loc) • 1.51 kB
JSON
{
"name": "gex",
"version": "4.1.2",
"main": "dist/gex.js",
"types": "dist/gex.d.ts",
"description": "Glob expressions for JavaScript",
"scripts": {
"test": "node --enable-source-maps --test \"dist-test/**/*.test.js\"",
"test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test \"dist-test/**/*.test.js\"",
"watch": "tsc --build src test -w",
"build": "tsc --build src test",
"clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"`; echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run build && npm run test && npm run repo-tag && npm publish --registry https://registry.npmjs.org "
},
"keywords": [
"glob",
"star",
"question",
"mark",
"expression",
"regular"
],
"homepage": "https://github.com/rjrodger/gex",
"author": "Richard Rodger (http://richardrodger.com/)",
"license": "MIT",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/rjrodger/gex.git"
},
"files": [
"README.md",
"LICENSE.txt",
"src",
"dist"
],
"devDependencies": {
"@types/node": "25.6.0",
"typescript": "6.0.3"
}
}