package.json 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. {
  2. "name": "@stencil/core",
  3. "version": "2.18.1",
  4. "license": "MIT",
  5. "main": "./internal/stencil-core/index.cjs",
  6. "module": "./internal/stencil-core/index.js",
  7. "types": "./internal/stencil-core/index.d.ts",
  8. "bin": {
  9. "stencil": "bin/stencil"
  10. },
  11. "files": [
  12. "!**/*.map",
  13. "!**/*.stub.ts",
  14. "!**/*.stub.tsx",
  15. "bin/",
  16. "cli/",
  17. "compiler/",
  18. "dependencies.json",
  19. "dev-server/",
  20. "internal/",
  21. "mock-doc/",
  22. "screenshot/",
  23. "sys/",
  24. "testing/"
  25. ],
  26. "scripts": {
  27. "build": "node scripts --prepare && npm run tsc.prod && npm run rollup.prod.ci",
  28. "clean": "rm -rf build/ cli/ compiler/ dev-server/ internal/ mock-doc/ sys/ testing/ && npm run clean-scripts",
  29. "clean-scripts": "rm -rf scripts/build",
  30. "license": "node scripts --license",
  31. "lint": "eslint \"src/*.ts\" \"src/**/*.ts\" \"src/**/*.tsx\"",
  32. "prettier": "npm run prettier.base -- --write",
  33. "prettier.base": "prettier \"./({bin,scripts,src,test}/**/*.{ts,tsx,js,jsx})|bin/stencil|.github/(**/)?*.(yml|yaml)|*.js\"",
  34. "prettier.dry-run": "npm run prettier.base -- --list-different",
  35. "release": "node scripts --release --publish",
  36. "release.prepare": "node scripts --release --prepare",
  37. "rollup": "rollup --config",
  38. "rollup.prod": "rollup --config --config-prod",
  39. "rollup.prod.ci": "rollup --config --config-prod --config-ci",
  40. "rollup.watch": "rollup --watch --config",
  41. "start": "npm run watch",
  42. "test": "jest --coverage",
  43. "test.analysis": "cd test && npm run analysis.build-and-analyze",
  44. "test.bundlers": "cd test && npm run bundlers",
  45. "test.dist": "node scripts --validate-build",
  46. "test.end-to-end": "cd test/end-to-end && npm ci && npm test && npm run test.dist",
  47. "test.jest": "jest",
  48. "test.karma": "cd test/karma && npm ci && npm run karma",
  49. "test.karma.prod": "cd test/karma && npm ci && npm run karma.prod",
  50. "test.prod": "npm run test.dist && npm run test.end-to-end && npm run test.jest && npm run test.karma && npm run test.sys.node && npm run test.testing && npm run test.analysis",
  51. "test.testing": "node scripts/test/validate-testing.js",
  52. "test.watch": "jest --watch",
  53. "test.watch-all": "jest --watchAll --coverage",
  54. "tsc": "tsc --incremental",
  55. "tsc.prod": "tsc",
  56. "tsc.scripts": "tsc -p scripts/tsconfig.json",
  57. "tsc.watch": "tsc --incremental --watch"
  58. },
  59. "devDependencies": {
  60. "@ionic/prettier-config": "^2.0.0",
  61. "@rollup/plugin-commonjs": "15.1.0",
  62. "@rollup/plugin-json": "4.1.0",
  63. "@rollup/plugin-node-resolve": "9.0.0",
  64. "@rollup/plugin-replace": "2.3.4",
  65. "@rollup/pluginutils": "4.1.0",
  66. "@types/eslint": "^8.4.6",
  67. "@types/exit": "^0.1.31",
  68. "@types/fs-extra": "^9.0.8",
  69. "@types/glob": "^8.0.0",
  70. "@types/graceful-fs": "^4.1.5",
  71. "@types/inquirer": "^7.3.1",
  72. "@types/jest": "^27.0.3",
  73. "@types/listr": "^0.14.4",
  74. "@types/node": "^14.14.35",
  75. "@types/parse5": "^6.0.0",
  76. "@types/pixelmatch": "^5.2.4",
  77. "@types/pngjs": "^3.4.2",
  78. "@types/prompts": "^2.0.9",
  79. "@types/semver": "^7.3.12",
  80. "@types/sizzle": "^2.3.2",
  81. "@types/webpack": "^4.41.26",
  82. "@types/ws": "^7.4.0",
  83. "@types/yarnpkg__lockfile": "^1.1.5",
  84. "@typescript-eslint/eslint-plugin": "^5.38.0",
  85. "@typescript-eslint/parser": "^5.38.0",
  86. "@yarnpkg/lockfile": "^1.1.0",
  87. "ansi-colors": "4.1.1",
  88. "autoprefixer": "10.2.5",
  89. "conventional-changelog-cli": "^2.2.2",
  90. "dts-bundle-generator": "~6.12.0",
  91. "eslint": "^8.23.1",
  92. "eslint-config-prettier": "^8.5.0",
  93. "eslint-plugin-jest": "^27.0.4",
  94. "eslint-plugin-jsdoc": "^39.3.1",
  95. "eslint-plugin-simple-import-sort": "^8.0.0",
  96. "execa": "4.1.0",
  97. "exit": "^0.1.2",
  98. "fs-extra": "^10.1.0",
  99. "glob": "8.0.3",
  100. "graceful-fs": "~4.2.6",
  101. "hash.js": "^1.1.7",
  102. "inquirer": "^7.3.3",
  103. "jest": "^27.4.5",
  104. "jest-cli": "^27.4.5",
  105. "jest-environment-node": "^27.4.4",
  106. "listr": "^0.14.3",
  107. "magic-string": "^0.26.3",
  108. "merge-source-map": "^1.1.0",
  109. "mime-db": "^1.46.0",
  110. "minimatch": "3.0.4",
  111. "node-fetch": "2.6.7",
  112. "open": "^8.4.0",
  113. "open-in-editor": "2.2.0",
  114. "parse5": "6.0.1",
  115. "path-browserify": "^1.0.1",
  116. "pixelmatch": "5.3.0",
  117. "postcss": "^8.2.8",
  118. "prettier": "2.7.1",
  119. "prompts": "2.4.0",
  120. "puppeteer": "~10.0.0",
  121. "rollup": "2.42.3",
  122. "rollup-plugin-sourcemaps": "^0.6.3",
  123. "semver": "^7.3.7",
  124. "sizzle": "^2.3.6",
  125. "terser": "5.6.1",
  126. "typescript": "4.7.4",
  127. "webpack": "^4.46.0",
  128. "ws": "7.4.6"
  129. },
  130. "engines": {
  131. "node": ">=12.10.0",
  132. "npm": ">=6.0.0"
  133. },
  134. "repository": {
  135. "type": "git",
  136. "url": "git+https://github.com/ionic-team/stencil.git"
  137. },
  138. "author": "Ionic Team",
  139. "homepage": "https://stenciljs.com/",
  140. "description": "A Compiler for Web Components and Progressive Web Apps",
  141. "keywords": [
  142. "web components",
  143. "components",
  144. "stencil",
  145. "ionic",
  146. "webapp",
  147. "custom elements",
  148. "pwa",
  149. "progressive web app"
  150. ],
  151. "prettier": "@ionic/prettier-config",
  152. "volta": {
  153. "node": "16.13.0",
  154. "npm": "8.1.1"
  155. }
  156. }