kuvio
Version:
Create string patterns and derive things from them, such as regexes
80 lines (79 loc) • 1.86 kB
JSON
{
"name": "kuvio",
"version": "1.3.1",
"description": "Create string patterns and derive things from them, such as regexes",
"files": [
"dist"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.global.js"
},
"./arbitrary": {
"types": "./dist/arbitrary.d.ts",
"node": "./dist/arbitrary.js",
"require": "./dist/arbitrary.js",
"import": "./dist/arbitrary.mjs",
"default": "./dist/arbitrary.global.js"
},
"./arbitrary-deferred": {
"types": "./dist/arbitrary-deferred.d.ts",
"node": "./dist/arbitrary-deferred.js",
"require": "./dist/arbitrary-deferred.js",
"import": "./dist/arbitrary-deferred.mjs",
"default": "./dist/arbitrary-deferred.global.js"
}
},
"scripts": {
"build": "rimraf dist && tsup",
"test": "jest",
"prepublishOnly": "pnpm run build",
"prepare": "husky install"
},
"keywords": [
"pattern",
"regular expression",
"regex",
"string",
"string pattern",
"string patterns",
"fast-check",
"fastcheck"
],
"author": "Jonathan Skeate",
"license": "MIT",
"dependencies": {
"@simspace/matchers": "^0.0.4",
"fp-ts": "^2.13.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^29.5.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"fast-check": "^3.8.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"prettier": "2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"tsup": "6.7.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"fast-check": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}