package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "_args": [
  3. [
  4. "javascript-stringify@2.0.1",
  5. "D:\\wnmp\\www\\vue\\seaBlueAdmin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "javascript-stringify@2.0.1",
  10. "_id": "javascript-stringify@2.0.1",
  11. "_inBundle": false,
  12. "_integrity": "sha512-yV+gqbd5vaOYjqlbk16EG89xB5udgjqQF3C5FAORDg4f/IS1Yc5ERCv5e/57yBcfJYw05V5JyIXabhwb75Xxow==",
  13. "_location": "/javascript-stringify",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "javascript-stringify@2.0.1",
  19. "name": "javascript-stringify",
  20. "escapedName": "javascript-stringify",
  21. "rawSpec": "2.0.1",
  22. "saveSpec": null,
  23. "fetchSpec": "2.0.1"
  24. },
  25. "_requiredBy": [
  26. "/webpack-chain"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.0.1.tgz",
  29. "_spec": "2.0.1",
  30. "_where": "D:\\wnmp\\www\\vue\\seaBlueAdmin",
  31. "author": {
  32. "name": "Blake Embrey",
  33. "email": "hello@blakeembrey.com",
  34. "url": "http://blakeembrey.me"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/blakeembrey/javascript-stringify/issues"
  38. },
  39. "description": "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`",
  40. "devDependencies": {
  41. "@types/jest": "^24.0.9",
  42. "@types/node": "^11.10.4",
  43. "@types/semver": "^5.5.0",
  44. "fast-check": "^1.12.0",
  45. "husky": "^1.3.1",
  46. "jest": "^24.0.0",
  47. "lint-staged": "^8.1.1",
  48. "prettier": "^1.16.1",
  49. "rimraf": "^2.5.4",
  50. "semver": "^5.6.0",
  51. "ts-jest": "^24.0.0",
  52. "tslint": "^5.0.0",
  53. "tslint-config-prettier": "^1.17.0",
  54. "tslint-config-standard": "^8.0.0",
  55. "typescript": "^3.3.1"
  56. },
  57. "files": [
  58. "dist/"
  59. ],
  60. "homepage": "https://github.com/blakeembrey/javascript-stringify",
  61. "husky": {
  62. "hooks": {
  63. "pre-commit": "lint-staged"
  64. }
  65. },
  66. "jest": {
  67. "roots": [
  68. "<rootDir>/src/"
  69. ],
  70. "transform": {
  71. "\\.tsx?$": "ts-jest"
  72. }
  73. },
  74. "keywords": [
  75. "stringify",
  76. "javascript",
  77. "object",
  78. "eval",
  79. "string",
  80. "code"
  81. ],
  82. "license": "MIT",
  83. "lint-staged": {
  84. "*.{js,ts,json,md,yml,css}": [
  85. "npm run prettier",
  86. "git add"
  87. ]
  88. },
  89. "main": "dist/index.js",
  90. "name": "javascript-stringify",
  91. "publishConfig": {
  92. "access": "public"
  93. },
  94. "repository": {
  95. "type": "git",
  96. "url": "git+https://github.com/blakeembrey/javascript-stringify.git"
  97. },
  98. "scripts": {
  99. "build": "rimraf dist/ && tsc",
  100. "format": "npm run prettier -- \"{.,src/**}/*.{js,ts,json,md,yml,css}\"",
  101. "lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
  102. "prepare": "npm run build",
  103. "prettier": "prettier --write",
  104. "specs": "jest --coverage",
  105. "test": "npm run lint && npm run build && npm run specs"
  106. },
  107. "types": "dist/index.d.ts",
  108. "version": "2.0.1"
  109. }