package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "_from": "maquette@~3.2.1",
  3. "_id": "maquette@3.2.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-0H+cBxxDJinYxNVoi0ZSpbuO+Yf0abT/snRM2aqj+bhip4Dl7iy41q9NSBBWvR511qp0LcN0SpNIFDE9SCvwQQ==",
  6. "_location": "/maquette",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "maquette@~3.2.1",
  12. "name": "maquette",
  13. "escapedName": "maquette",
  14. "rawSpec": "~3.2.1",
  15. "saveSpec": null,
  16. "fetchSpec": "~3.2.1"
  17. },
  18. "_requiredBy": [
  19. "/"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/maquette/-/maquette-3.2.2.tgz",
  22. "_shasum": "a953b15a0db8df4a63f83933c85270d164de512c",
  23. "_spec": "maquette@~3.2.1",
  24. "_where": "C:\\Users\\xiao2192\\.jenkins\\workspace\\hydra",
  25. "author": {
  26. "name": "Johan Gorter",
  27. "email": "johan@johangorter.com"
  28. },
  29. "browser": "./dist/maquette.umd.js",
  30. "bugs": {
  31. "url": "https://github.com/AFASSoftware/maquette/issues"
  32. },
  33. "bundleDependencies": false,
  34. "deprecated": false,
  35. "description": "Minimalistic Virtual DOM implementation with support for animated transitions.",
  36. "devDependencies": {
  37. "@types/chai-as-promised": "7.1.0",
  38. "@types/sinon": "4.1.3",
  39. "@types/sinon-chai": "2.7.29",
  40. "Set": "0.4.1",
  41. "browser-sync": "2.23.6",
  42. "chai-as-promised": "7.1.1",
  43. "cross-env": "5.1.3",
  44. "debug": "3.1.0",
  45. "del": "3.0.0",
  46. "ink-docstrap": "1.3.2",
  47. "inquirer": "5.1.0",
  48. "istanbul": "0.4.5",
  49. "jsdoc": "3.5.5",
  50. "jsdom": "11.6.2",
  51. "jsdom-global": "3.0.2",
  52. "mocha": "5.0.1",
  53. "nyc": "11.4.1",
  54. "precss": "3.1.0",
  55. "remap-istanbul": "0.10.1",
  56. "rollup": "0.55.5",
  57. "sinon": "4.3.0",
  58. "sinon-chai": "2.14.0",
  59. "typescript-assistant": "0.28.0",
  60. "uglify-js": "3.3.10"
  61. },
  62. "homepage": "https://maquettejs.org/",
  63. "keywords": [
  64. "virtual",
  65. "dom",
  66. "animation",
  67. "transitions"
  68. ],
  69. "license": "MIT",
  70. "main": "./dist/maquette.cjs.js",
  71. "module": "./dist/index.js",
  72. "name": "maquette",
  73. "nyc": {
  74. "include": [
  75. "src/**/*.ts",
  76. "typings/**/*.ts"
  77. ],
  78. "extension": [
  79. ".ts"
  80. ],
  81. "reporter": [
  82. "lcov",
  83. "html",
  84. "text-summary"
  85. ],
  86. "cache": true,
  87. "temp-directory": "./build/nyc/cache",
  88. "all": true,
  89. "check-coverage": true,
  90. "report-dir": "./build/coverage",
  91. "es-module": false,
  92. "lines": 100,
  93. "statements": 100,
  94. "functions": 100,
  95. "branches": 100,
  96. "watermarks": {
  97. "lines": [
  98. 75,
  99. 100
  100. ],
  101. "functions": [
  102. 75,
  103. 100
  104. ],
  105. "branches": [
  106. 75,
  107. 100
  108. ],
  109. "statements": [
  110. 75,
  111. 100
  112. ]
  113. }
  114. },
  115. "repository": {
  116. "type": "git",
  117. "url": "git+https://github.com/AFASSoftware/maquette.git"
  118. },
  119. "scripts": {
  120. "assist": "tsa assist",
  121. "ci": "tsa ci && npm -s run dist && ts-node ./tools/check-file-size",
  122. "clean": "tsa clean",
  123. "dist": "tsc -p ./src/tsconfig.json && tsc -p ./examples/tsconfig.json && rollup -c && uglifyjs ./dist/maquette.umd.js -c unsafe=true,unsafe_comps=true,unsafe_math=true,passes=3 -m -o ./dist/maquette.umd.min.js",
  124. "fix": "tsa fix",
  125. "postcheckout": "tsa post-checkout || exit 0",
  126. "postmerge": "tsa post-merge || exit 0",
  127. "precommit": "tsa pre-commit",
  128. "prepublishOnly": "tsa clean && npm run dist",
  129. "prepush": "npm run dist && tsa pre-push",
  130. "publish-website": "cd website && npm install --no-optional && node generate && npm run typedoc && firebase deploy",
  131. "release": "tsa release",
  132. "test": "tsa ci",
  133. "test-also-with-browser": "npm run dist && cd examples/todomvc && npm install --no-save bower && bower install && cd ../../browser-tests && npm install && npm test"
  134. },
  135. "tonicExampleFilename": "examples/tonic-example.js",
  136. "typings": "./dist/index.d.ts",
  137. "version": "3.2.2"
  138. }