package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "utrie",
  3. "version": "1.0.2",
  4. "description": "Unicode Trie",
  5. "main": "dist/utrie.umd.js",
  6. "module": "dist/utrie.es5.js",
  7. "typings": "dist/types/index.d.ts",
  8. "scripts": {
  9. "prebuild": "rimraf dist/",
  10. "build": "tsc --module commonjs && rollup -c rollup.config.ts",
  11. "format": "prettier --write \"{src,scripts}/**/*.ts\"",
  12. "lint": "tslint -c tslint.json --project tsconfig.json -t codeFrame src/**/*.ts tests/**/*.ts scripts/**/*.ts",
  13. "mocha": "mocha --require ts-node/register tests/*.ts",
  14. "test": "npm run lint && npm run mocha",
  15. "release": "standard-version"
  16. },
  17. "dependencies": {
  18. "base64-arraybuffer": "^1.0.2"
  19. },
  20. "devDependencies": {
  21. "@rollup/plugin-commonjs": "^19.0.0",
  22. "@rollup/plugin-node-resolve": "^13.0.0",
  23. "@rollup/plugin-typescript": "^8.2.1",
  24. "@types/mocha": "^8.2.2",
  25. "@types/node": "^16.0.0",
  26. "mocha": "9.0.2",
  27. "prettier": "^2.3.2",
  28. "rimraf": "3.0.2",
  29. "rollup": "^2.52.7",
  30. "rollup-plugin-json": "^4.0.0",
  31. "rollup-plugin-sourcemaps": "^0.6.3",
  32. "standard-version": "^9.3.0",
  33. "ts-node": "^10.0.0",
  34. "tslib": "^2.3.0",
  35. "tslint": "^6.1.3",
  36. "tslint-config-prettier": "^1.18.0",
  37. "typescript": "^4.3.5"
  38. },
  39. "author": {
  40. "name": "Niklas von Hertzen",
  41. "email": "niklasvh@gmail.com",
  42. "url": "https://hertzen.com"
  43. },
  44. "license": "MIT",
  45. "repository": {
  46. "type": "git",
  47. "url": "git+ssh://git@github.com/niklasvh/utrie.git"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/niklasvh/utrie/issues"
  51. },
  52. "homepage": "https://github.com/niklasvh/utrie"
  53. }