package.json 867 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "array-tree-filter",
  3. "version": "2.1.0",
  4. "description": "filter in array tree",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "test": "npm run build && tape test/*.js",
  8. "pub": "npm run build && npm publish",
  9. "tsc": "tsc",
  10. "build": "npm run tsc && rollup index.js --output.format umd --name 'arrayTreeFilter' --output.file lib/index.js"
  11. },
  12. "files": ["lib", "index.d.ts"],
  13. "repository": {
  14. "type": "git",
  15. "url": "git+ssh://git@github.com/afc163/array-tree-filter.git"
  16. },
  17. "keywords": ["array", "tree", "filter"],
  18. "author": "afc163 <afc163@gmail.com>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/afc163/array-tree-filter/issues"
  22. },
  23. "homepage": "https://github.com/afc163/array-tree-filter#readme",
  24. "devDependencies": {
  25. "rollup": "^0.52.1",
  26. "tape": "^4.3.0",
  27. "typescript": "^2.7.1"
  28. }
  29. }