1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "vnopts",
- "version": "1.0.2",
- "description": "validate and normalize options",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "repository": "https://github.com/ikatyang/vnopts",
- "homepage": "https://github.com/ikatyang/vnopts#readme",
- "author": {
- "name": "Ika",
- "email": "ikatyang@gmail.com",
- "url": "https://github.com/ikatyang"
- },
- "license": "MIT",
- "scripts": {
- "prepublish": "yarn run build",
- "lint": "tslint -p ./tsconfig.json --type-check",
- "test": "jest",
- "prebuild": "rm -rf ./lib",
- "build": "tsc -p ./tsconfig.build.json",
- "release": "standard-version"
- },
- "dependencies": {
- "chalk": "^2.4.1",
- "leven": "^2.1.0",
- "tslib": "^1.9.3"
- },
- "devDependencies": {
- "@types/jest": "23.3.1",
- "@types/leven": "2.1.1",
- "@types/node": "6.0.117",
- "has-ansi": "3.0.0",
- "jest": "23.5.0",
- "prettier": "1.14.2",
- "prettier-config-ikatyang": "1.1.1",
- "standard-version": "4.4.0",
- "strip-ansi": "4.0.0",
- "ts-jest": "23.1.4",
- "tslint": "5.11.0",
- "tslint-config-prettier": "1.15.0",
- "tslint-plugin-prettier": "1.3.0",
- "typescript": "3.0.3"
- },
- "engines": {
- "node": ">= 6"
- },
- "files": [
- "/lib/**/*"
- ]
- }
|