package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "node-xlsx",
  3. "author": "Olivier Louvignes <olivier@mg-crea.com>",
  4. "version": "0.11.2",
  5. "description": "NodeJS Excel files parser & builder",
  6. "main": "lib/index.js",
  7. "scripts": {
  8. "start": "npm run test:watch",
  9. "test": "NODE_ENV=test jest --runInBand",
  10. "test:watch": "npm run test -- --watch",
  11. "test:coverage": "npm run test -- --coverage",
  12. "lint": "NODE_ENV=test eslint src/",
  13. "compile": "rimraf lib/*; NODE_ENV=production babel src/ -d lib/ -s",
  14. "compile:watch": "npm run compile -- -w",
  15. "prepublish": "npm run compile"
  16. },
  17. "repository": "github:mgcrea/node-xlsx",
  18. "license": "Apache-2.0",
  19. "dependencies": {
  20. "xlsx": "^0.11.10"
  21. },
  22. "devDependencies": {
  23. "babel-cli": "^6.26.0",
  24. "babel-eslint": "^8.0.2",
  25. "babel-plugin-transform-class-properties": "^6.24.1",
  26. "babel-plugin-transform-function-bind": "^6.22.0",
  27. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  28. "babel-preset-es2015": "^6.24.1",
  29. "babel-register": "^6.26.0",
  30. "codacy-coverage": "^2.0.3",
  31. "debug-utils": "^0.2.1",
  32. "eslint": "^4.11.0",
  33. "eslint-config-airbnb-base": "^12.1.0",
  34. "eslint-plugin-import": "^2.8.0",
  35. "expect": "^21.2.1",
  36. "jest": "^21.2.1",
  37. "rimraf": "^2.6.2"
  38. },
  39. "engines": {
  40. "node": ">=4.0.0"
  41. },
  42. "keywords": [
  43. "excel",
  44. "parser",
  45. "builder",
  46. "xlsx",
  47. "xls"
  48. ],
  49. "jest": {
  50. "testEnvironment": "node"
  51. }
  52. }