package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "stringifier",
  3. "description": "Yet another stringify function",
  4. "version": "1.4.0",
  5. "author": {
  6. "name": "Takuto Wada",
  7. "email": "takuto.wada@gmail.com",
  8. "url": "https://github.com/twada"
  9. },
  10. "bugs": "https://github.com/twada/stringifier/issues",
  11. "dependencies": {
  12. "core-js": "^2.0.0",
  13. "traverse": "^0.6.6",
  14. "type-name": "^2.0.1"
  15. },
  16. "devDependencies": {
  17. "browserify": "^13.0.0",
  18. "del": "^2.0.2",
  19. "gulp": "^3.9.0",
  20. "gulp-derequire": "^2.1.0",
  21. "gulp-dereserve": "^0.2.1",
  22. "gulp-mocha": "^2.1.3",
  23. "gulp-mocha-phantomjs": "^0.11.0",
  24. "gulp-util": "^3.0.6",
  25. "gulp-webserver": "^0.9.1",
  26. "licensify": "^3.1.0",
  27. "mocha": "^2.3.3",
  28. "vinyl-source-stream": "^1.1.0"
  29. },
  30. "files": [
  31. "CHANGELOG.md",
  32. "README.md",
  33. "index.js",
  34. "strategies.js",
  35. "build/stringifier.js",
  36. "package.json"
  37. ],
  38. "homepage": "https://github.com/twada/stringifier",
  39. "keywords": [
  40. "stringify"
  41. ],
  42. "license": "MIT",
  43. "main": "index.js",
  44. "repository": {
  45. "type": "git",
  46. "url": "git://github.com/twada/stringifier.git"
  47. },
  48. "scripts": {
  49. "preversion": "npm test",
  50. "version": "npm run build && git add -A build",
  51. "bower": "bower install --config.interactive=false",
  52. "build": "npm prune && npm dedupe && gulp bundle",
  53. "lint": "jshint index.js strategies.js",
  54. "es6": "./test/travis_es6.sh",
  55. "unit": "npm run es6 && gulp unit",
  56. "test": "npm run es6 && gulp test"
  57. }
  58. }