package.json 752 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "k8w-linq-array",
  3. "version": "0.2.8",
  4. "description": "LINQ-like functions extended to native Array",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "build": "rm -rf dist && tsc && cp package.json index.d.ts LICENSE README.md dist/",
  9. "pub": "npm run build && cd dist && npm publish & cd .."
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/k8w/k8w-linq-array.git"
  14. },
  15. "keywords": [
  16. "k8w",
  17. "linq",
  18. "array"
  19. ],
  20. "author": "k8w",
  21. "license": "Apache-2.0",
  22. "devDependencies": {
  23. "@types/mocha": "^2.2.41",
  24. "@types/node": "^8.0.23",
  25. "mocha": "^9.1.2",
  26. "ts-node": "^10.2.1",
  27. "typescript": "^4.4.3"
  28. },
  29. "typings": "index.d.ts"
  30. }