package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "opentype.js",
  3. "description": "OpenType font parser",
  4. "version": "0.7.3",
  5. "author": {
  6. "name": "Frederik De Bleser",
  7. "email": "frederik@debleser.be"
  8. },
  9. "keywords": [
  10. "graphics",
  11. "fonts",
  12. "opentype",
  13. "otf",
  14. "ttf",
  15. "type"
  16. ],
  17. "license": "MIT",
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/nodebox/opentype.js.git"
  21. },
  22. "main": "dist/opentype.js",
  23. "module": "src/opentype.js",
  24. "bin": {
  25. "ot": "./bin/ot"
  26. },
  27. "scripts": {
  28. "start": "node ./bin/server.js",
  29. "watch": "rollup -c -w",
  30. "test": "mocha --require reify --compilers js:buble/register --recursive && jshint . && jscs .",
  31. "build": "rollup -c",
  32. "minify": "uglifyjs ./dist/opentype.js > ./dist/opentype.min.js",
  33. "dist": "npm run test && npm run build && npm run minify"
  34. },
  35. "devDependencies": {
  36. "buble": "^0.15.2",
  37. "cross-env": "^5.0.0",
  38. "jscs": "^3.0.3",
  39. "jshint": "^2.9.2",
  40. "mocha": "^2.5.3",
  41. "reify": "^0.11.0",
  42. "rollup": "^0.41.6",
  43. "rollup-plugin-buble": "^0.15.0",
  44. "rollup-plugin-commonjs": "^8.0.2",
  45. "rollup-plugin-license": "^0.4.0",
  46. "rollup-plugin-node-resolve": "^3.0.0",
  47. "rollup-watch": "^3.2.2",
  48. "uglify-js": "^3.0.14",
  49. "uglifyjs": "^2.4.11"
  50. },
  51. "browser": {
  52. "fs": false
  53. },
  54. "dependencies": {
  55. "tiny-inflate": "^1.0.2"
  56. }
  57. }