package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "each-props",
  3. "version": "1.3.2",
  4. "description": "Processes each properties of an object deeply.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "lint": "eslint .",
  11. "test": "mocha",
  12. "coverage": "nyc --reporter=lcov --reporter=text-summary npm test",
  13. "coveralls": "nyc --reporter=text-lcov npm test | coveralls",
  14. "web:build": "browserify index.js --standalone eachProps -o web/each-props.js && cd web && uglifyjs each-props.js --compress --mangle -o each-props.min.js --source-map url=each-props.min.js.map",
  15. "chrome:install": "npm i --no-save mocha-chrome",
  16. "chrome:test": "mocha-chrome test/web/browser-test.html",
  17. "build": "npm run lint && npm run coverage && npm run web:build && node test/web/make.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/sttk/each-props.git"
  22. },
  23. "keywords": [
  24. "deep",
  25. "each",
  26. "object",
  27. "property",
  28. "properties",
  29. "props"
  30. ],
  31. "author": "Takayuki Sato",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/sttk/each-props/issues"
  35. },
  36. "homepage": "https://github.com/sttk/each-props#readme",
  37. "dependencies": {
  38. "is-plain-object": "^2.0.1",
  39. "object.defaults": "^1.1.0"
  40. },
  41. "devDependencies": {
  42. "browserify": "^16.2.2",
  43. "chai": "^3.5.0",
  44. "coveralls": "^3.0.1",
  45. "eslint": "^4.19.1",
  46. "mocha": "^3.2.0",
  47. "nyc": "^11.7.2",
  48. "uglify-js": "^3.3.24"
  49. }
  50. }