package.json 943 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "neocities",
  3. "version": "0.0.2",
  4. "description": "library for the NeoCities.org API",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git@github.com:neocities/neocities-node.git"
  9. },
  10. "keywords": [
  11. "neocities"
  12. ],
  13. "author": "Kyle Drake <kyle@kyledrake.net> (http://kyledrake.net/)",
  14. "license": "BSD-2-Clause",
  15. "bugs": {
  16. "url": "https://github.com/neocities/neocities-node/issues"
  17. },
  18. "dependencies": {
  19. "form-data": "*"
  20. },
  21. "devDependencies": {
  22. "browserify": "*",
  23. "uglify-js": "*",
  24. "istanbul": "*",
  25. "mocha": "*"
  26. },
  27. "scripts": {
  28. "test": "./node_modules/.bin/istanbul test ./node_modules/.bin/mocha -- --reporter list test/*.js",
  29. "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/mocha -- --reporter list test/*.js",
  30. "browserify": "./node_modules/.bin/browserify ./index.js | ./node_modules/.bin/uglifyjs > neocities.min.js"
  31. }
  32. }