jsproptest
Version:
Javascript Property-based Testing
74 lines (73 loc) • 1.69 kB
JSON
{
"name": "jsproptest",
"version": "0.5.4",
"description": "Javascript Property-based Testing",
"author": "Won-Wook Hong",
"license": "MIT",
"keywords": [
"property-based-testing"
],
"repository": {
"type": "git",
"url": "http://github.com/kindone/jsproptest.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"scripts": {
"build": "tsup src/index.ts --dts",
"test": "jest --verbose",
"lint": "eslint src",
"prepare": "husky",
"size": "size-limit",
"analyze": "size-limit --why",
"lint-staged": "eslint --fix"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"lint": "eslint src",
"module": "dist/tsproptest.esm.js",
"size-limit": [
{
"path": "dist/tsproptest.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/tsproptest.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@eslint/js": "^9.25.0",
"@jest/globals": "^29.7.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.25.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"size-limit": "^11.2.0",
"ts-jest": "^29.3.2",
"tslib": "^2.8.1",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
},
"dependencies": {
"@types/random-js": "^2.0.0",
"rand-seed": "^2.1.7",
"random-js": "^2.1.0"
}
}