package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "angular-html-parser",
  3. "version": "1.8.0",
  4. "description": "A HTML parser extracted from Angular with some modifications",
  5. "main": "lib/angular-html-parser/src/index.js",
  6. "types": "lib/angular-html-parser/src/index.d.ts",
  7. "repository": "https://github.com/ikatyang/angular-html-parser",
  8. "homepage": "https://github.com/ikatyang/angular-html-parser/blob/master/packages/angular-html-parser#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. "prebuild": "rm -rf ./lib",
  18. "build": "tsc -p tsconfig.build.json",
  19. "test": "ts-node --transpileOnly --project tsconfig.test.json -r tsconfig-paths/register node_modules/.bin/jasmine ../compiler/test/ml_parser/*_spec.ts ./test/*_spec.ts",
  20. "release": "standard-version"
  21. },
  22. "dependencies": {
  23. "tslib": "^1.9.3"
  24. },
  25. "devDependencies": {
  26. "jasmine": "3.2.0",
  27. "standard-version": "4.4.0",
  28. "ts-node": "7.0.1",
  29. "tsconfig-paths": "3.6.0",
  30. "typescript": "3.1.3"
  31. },
  32. "engines": {
  33. "node": ">= 6"
  34. },
  35. "files": [
  36. "/lib/**/*",
  37. "/ThirdPartyNoticeText.txt"
  38. ]
  39. }