exportcase
Version:
A TypeScript validator that ensures file names match their exported name
29 lines (28 loc) • 628 B
JSON
{
"name": "exportcase",
"version": "1.0.0",
"main": "index.js",
"bin": {
"exportcase": "./bin/exportcase.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ferdodo/exportcase.git"
},
"scripts": {
"get-binary": "mkdir -p bin && cp ../binary/target/wasm32-wasip1/release/exportcase.wasm ./bin/exportcase.wasm"
},
"keywords": [
"typescript",
"validator",
"file-naming",
"naming-convention",
"exports"
],
"author": "Thomas Riffard",
"license": "MIT",
"description": "A TypeScript validator that ensures file names match their exported name",
"engines": {
"node": ">=16.0.0"
}
}