package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "simple-html-tokenizer",
  3. "version": "0.5.11",
  4. "description": "Simple HTML Tokenizer is a lightweight JavaScript library that can be used to tokenize the kind of HTML normally found in templates.",
  5. "keywords": [
  6. "html",
  7. "tokenizer"
  8. ],
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/tildeio/simple-html-tokenizer.git"
  12. },
  13. "license": "MIT",
  14. "main": "dist/simple-html-tokenizer.js",
  15. "module": "dist/es6/index.js",
  16. "types": "dist/types/index.d.ts",
  17. "files": [
  18. "dist",
  19. "!dist/tests"
  20. ],
  21. "scripts": {
  22. "build": "ember build",
  23. "lint": "tslint -p tsconfig.json",
  24. "prepare": "ember build",
  25. "prepublish": "rm -rf node_modules/in-repo-commands && ln -s ../commands node_modules/in-repo-commands && rm -rf node_modules/symlink-self && ln -s ../lib/symlink-self node_modules/symlink-self",
  26. "test": "ember test && nyc qunit dist/tests/tests.js"
  27. },
  28. "devDependencies": {
  29. "@types/qunit": "^2.5.0",
  30. "broccoli-concat": "^3.0.5",
  31. "broccoli-funnel": "^2.0.1",
  32. "broccoli-merge-trees": "^3.0.0",
  33. "broccoli-rollup": "^2.0.0",
  34. "broccoli-tslinter": "^3.0.1",
  35. "broccoli-typescript-compiler": "^2.2.0",
  36. "ember-cli": "^3.0.0",
  37. "got": "^8.2.0",
  38. "in-repo-commands": "file:./commands",
  39. "nyc": "^11.4.1",
  40. "qunit": "^2.5.1",
  41. "release-it": "^14.0.2",
  42. "release-it-lerna-changelog": "^2.4.0",
  43. "rollup-plugin-sourcemaps": "^0.4.2",
  44. "symlink-self": "file:./lib/symlink-self",
  45. "tslint": "^5.9.1",
  46. "typescript": "^2.7.2"
  47. },
  48. "publishConfig": {
  49. "registry": "https://registry.npmjs.org"
  50. },
  51. "release-it": {
  52. "plugins": {
  53. "release-it-lerna-changelog": {
  54. "infile": "CHANGELOG.md",
  55. "launchEditor": true
  56. }
  57. },
  58. "git": {
  59. "tagName": "v${version}"
  60. },
  61. "github": {
  62. "release": true,
  63. "tokenRef": "GITHUB_AUTH"
  64. }
  65. }
  66. }