@fantasticfiasco/expect
Version:
A Node.js library written in TypeScript providing argument validation.
59 lines (58 loc) • 1.64 kB
JSON
{
"name": "@fantasticfiasco/expect",
"version": "1.1.0",
"description": "A Node.js library written in TypeScript providing argument validation.",
"keywords": [
"expect",
"argument",
"validation"
],
"homepage": "https://github.com/FantasticFiasco/expect",
"repository": {
"type": "git",
"url": "https://github.com/FantasticFiasco/expect.git"
},
"bugs": {
"url": "https://github.com/FantasticFiasco/expect/issues"
},
"author": "Mattias Kindborg <mattias.kindborg@gmail.com> (https://twitter.com/FantasticFiasco)",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"clean": "rimraf \"./+(src|test)/**/*.+(d.ts|js|js.map)\" ./lib ./coverage",
"prebuild": "yarn clean",
"build": "tsc",
"postbuild": "copyfiles --up 1 \"./src/**/*.{d.ts,js}\" ./lib/",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "tslint \"./src/**/*.ts\" --exclude \"./**/*.d.ts\"",
"prepack": "yarn test && yarn lint",
"release": "node ./scripts/release.js"
},
"dependencies": {},
"devDependencies": {
"@octokit/rest": "18.1.1",
"@types/jest": "26.0.20",
"@types/node": "14.14.27",
"copyfiles": "2.4.1",
"inquirer": "7.3.3",
"jest": "26.6.3",
"rimraf": "3.0.2",
"ts-jest": "26.5.1",
"tslint": "6.1.3",
"typescript": "4.1.5"
},
"resolutions": {
"diff": ">=3.5.0",
"handlebars": ">=4.3.0",
"js-yaml": ">=3.13.1",
"lodash": ">=4.17.13",
"minimist": ">=1.2.2",
"node-notifier": ">=8.0.1",
"sshpk": ">=1.13.2"
}
}