package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "vnopts",
  3. "version": "1.0.2",
  4. "description": "validate and normalize options",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "repository": "https://github.com/ikatyang/vnopts",
  8. "homepage": "https://github.com/ikatyang/vnopts#readme",
  9. "author": {
  10. "name": "Ika",
  11. "email": "ikatyang@gmail.com",
  12. "url": "https://github.com/ikatyang"
  13. },
  14. "license": "MIT",
  15. "scripts": {
  16. "prepublish": "yarn run build",
  17. "lint": "tslint -p ./tsconfig.json --type-check",
  18. "test": "jest",
  19. "prebuild": "rm -rf ./lib",
  20. "build": "tsc -p ./tsconfig.build.json",
  21. "release": "standard-version"
  22. },
  23. "dependencies": {
  24. "chalk": "^2.4.1",
  25. "leven": "^2.1.0",
  26. "tslib": "^1.9.3"
  27. },
  28. "devDependencies": {
  29. "@types/jest": "23.3.1",
  30. "@types/leven": "2.1.1",
  31. "@types/node": "6.0.117",
  32. "has-ansi": "3.0.0",
  33. "jest": "23.5.0",
  34. "prettier": "1.14.2",
  35. "prettier-config-ikatyang": "1.1.1",
  36. "standard-version": "4.4.0",
  37. "strip-ansi": "4.0.0",
  38. "ts-jest": "23.1.4",
  39. "tslint": "5.11.0",
  40. "tslint-config-prettier": "1.15.0",
  41. "tslint-plugin-prettier": "1.3.0",
  42. "typescript": "3.0.3"
  43. },
  44. "engines": {
  45. "node": ">= 6"
  46. },
  47. "files": [
  48. "/lib/**/*"
  49. ]
  50. }