package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "editorconfig",
  3. "version": "0.15.3",
  4. "description": "EditorConfig File Locator and Interpreter for Node.js",
  5. "keywords": [
  6. "editorconfig",
  7. "core"
  8. ],
  9. "main": "src/index.js",
  10. "contributors": [
  11. "Hong Xu (topbug.net)",
  12. "Jed Mao (https://github.com/jedmao/)",
  13. "Trey Hunner (http://treyhunner.com)"
  14. ],
  15. "directories": {
  16. "bin": "./bin",
  17. "lib": "./lib"
  18. },
  19. "scripts": {
  20. "clean": "rimraf dist",
  21. "prebuild": "npm run clean",
  22. "build": "tsc",
  23. "pretest": "npm run lint && npm run build && npm run copy && cmake .",
  24. "test": "ctest .",
  25. "pretest:ci": "npm run pretest",
  26. "test:ci": "ctest -VV --output-on-failure .",
  27. "lint": "npm run eclint && npm run tslint",
  28. "eclint": "eclint check --indent_size ignore \"src/**\"",
  29. "tslint": "tslint --project tsconfig.json --exclude package.json",
  30. "copy": "cpy .npmignore LICENSE README.md CHANGELOG.md dist && cpy bin/* dist/bin && cpy src/lib/fnmatch*.* dist/src/lib",
  31. "prepub": "npm run lint && npm run build && npm run copy",
  32. "pub": "npm publish ./dist"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git://github.com/editorconfig/editorconfig-core-js.git"
  37. },
  38. "bugs": "https://github.com/editorconfig/editorconfig-core-js/issues",
  39. "author": "EditorConfig Team",
  40. "license": "MIT",
  41. "dependencies": {
  42. "commander": "^2.19.0",
  43. "lru-cache": "^4.1.5",
  44. "semver": "^5.6.0",
  45. "sigmund": "^1.0.1"
  46. },
  47. "devDependencies": {
  48. "@types/mocha": "^5.2.6",
  49. "@types/node": "^10.12.29",
  50. "@types/semver": "^5.5.0",
  51. "cpy-cli": "^2.0.0",
  52. "eclint": "^2.8.1",
  53. "mocha": "^5.2.0",
  54. "rimraf": "^2.6.3",
  55. "should": "^13.2.3",
  56. "tslint": "^5.13.1",
  57. "typescript": "^3.3.3333"
  58. }
  59. }