volva
Version:
Easier type checks for JS/TS variables.
57 lines (56 loc) • 1.62 kB
JSON
{
"name": "volva",
"version": "2.0.6",
"description": "Easier type checks for JS/TS variables.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/stscoundrel/volva.git",
"author": "stscoundrel <silvennoinen.sampo@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"utility",
"types",
"type-checks",
"is-integer",
"is-array",
"is-object"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@stryker-mutator/core": "^7.1.0",
"@stryker-mutator/jest-runner": "^7.1.0",
"@types/jest": "^28.1.4",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-jest": "^29.0.1",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.0.1",
"jest": "^28.1.0",
"ts-jest": "^28.0.1",
"ts-node": "^10.4.0",
"typescript": "^5.0.3"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"jest": "jest --verbose --runInBand --passWithNoTests",
"test:unit": "yarn jest",
"test:mutation": "stryker run",
"test:coverage": "jest --coverage --coverageThreshold='{\"global\":{\"statements\":\"90\", \"functions\":\"90\", \"branches\":\"90\", \"lines\":\"90\"}}'",
"build": "tsc",
"prepublishOnly": "yarn build && yarn test:unit"
}
}