电速宝智配引擎
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

package.json 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "xml-js",
  3. "version": "1.6.11",
  4. "description": "A convertor between XML text and Javascript object / JSON text.",
  5. "repository": {
  6. "type": "git",
  7. "url": "git+https://github.com/nashwaan/xml-js.git"
  8. },
  9. "author": "Yousuf Almarzooqi <ysf953@gmail.com>",
  10. "license": "MIT",
  11. "bugs": {
  12. "url": "https://github.com/nashwaan/xml-js/issues"
  13. },
  14. "homepage": "https://github.com/nashwaan/xml-js#readme",
  15. "keywords": [
  16. "XML",
  17. "xml",
  18. "js",
  19. "JSON",
  20. "json",
  21. "cdata",
  22. "CDATA",
  23. "doctype",
  24. "processing instruction",
  25. "Javascript",
  26. "js2xml",
  27. "json2xml",
  28. "xml2js",
  29. "xml2json",
  30. "transform",
  31. "transformer",
  32. "transforming",
  33. "transformation",
  34. "convert",
  35. "convertor",
  36. "converting",
  37. "conversion",
  38. "parse",
  39. "parser",
  40. "parsing"
  41. ],
  42. "main": "lib/index.js",
  43. "bin": "./bin/cli.js",
  44. "types": "./types/index.d.ts",
  45. "scripts": {
  46. "build": "webpack",
  47. "doc": "node doc/compile-doc.js",
  48. "watch:doc": "watch \"npm run doc\" doc/templates/",
  49. "live:doc": "browser-sync start --port 9997 --server doc/ --files doc/templates/ --no-open --no-ui --no-online",
  50. "open:doc": "biased-opener --browser chrome http://localhost:9997",
  51. "start:doc": "npm-run-all --parallel watch:doc live:doc open:doc",
  52. "debug": "nodemon --inspect --watch lib/ --watch test/ --debug-brk test/index.js",
  53. "debug:cli": "nodemon --inspect --watch lib/ --debug-brk index.js -- --help",
  54. "jest": "jest --config=test/jest.conf.js",
  55. "jasmine": "jasmine JASMINE_CONFIG_PATH=./test/jasmine.json",
  56. "watch:jasmine": "watch \"npm run jasmine\" lib/ test/ --ignoreDirectoryPattern=/browse-.+/",
  57. "bundle:jasmine": "globify test/*.spec.js --watch --verbose --list --outfile test/browse-jasmine/bundle.js",
  58. "live:jasmine": "browser-sync start --port 9999 --server test/browse-jasmine/ --files test/browse-jasmine/ --no-open --no-ui --no-online",
  59. "open-help": "biased-opener --help",
  60. "open:jasmine": "biased-opener --browser chrome http://localhost:9999",
  61. "istanbul-original": "istanbul cover --dir test/coverage-jasmine -x test/browse-** test/index.js",
  62. "istanbul": "istanbul cover --dir test/coverage-jasmine test/index.js",
  63. "watch:istanbul": "watch \"npm run istanbul\" lib/ test/ --ignoreDirectoryPattern=/coverage-.+/",
  64. "live:istanbul": "browser-sync start --port 9998 --server test/coverage-jasmine/lcov-report/ --files test/coverage-jasmine/lcov-report/ --no-open --no-ui --no-online",
  65. "open:istanbul": "biased-opener --browser chrome http://localhost:9998",
  66. "live": "npm-run-all --parallel live:* open:*",
  67. "start": "npm-run-all --parallel bundle:jasmine live:jasmine open:jasmine watch:istanbul live:istanbul open:istanbul",
  68. "git:commit": "git add . && git commit -a -m \"Committed by npm script.\" && git push origin master",
  69. "git:push": "git push origin master",
  70. "deploy": "npm-run-all --serial coverage:* git:*",
  71. "coverage": "npm-run-all coverage:*",
  72. "coverage:a-step": "npm run istanbul",
  73. "coverage:coveralls": "cross-env COVERALLS_REPO_TOKEN=CaEwzjHxsKRqomJSYmGagrJdlR7uLHhHC && cat ./test/coverage-jasmine/lcov.info | coveralls",
  74. "coverage:codecov": "codecov --token=0e52af41-702b-4d7f-8aa3-61145ac36624 --file=test/coverage-jasmine/lcov.info ",
  75. "coverage:codacy": "cross-env CODACY_PROJECT_TOKEN=0207815122ea49a68241d1aa435f21f1 && cat ./test/coverage-jasmine/lcov.info | codacy-coverage",
  76. "coverage:codeclimate": "cross-env CODECLIMATE_REPO_TOKEN=60848a077f9070acf358b0c7145f0a2698a460ddeca7d8250815e75aa4333f7d codeclimate-test-reporter < test\\coverage-jasmine\\lcov.info",
  77. "prepublish": "npm run test",
  78. "test": "npm run jasmine && npm run jest && npm run test:types",
  79. "test:types": "tsc -p ./types"
  80. },
  81. "dependencies": {
  82. "sax": "^1.2.4"
  83. },
  84. "devDependencies": {
  85. "babel-core": "^6.26.3",
  86. "babel-loader": "^7.1.4",
  87. "babel-preset-env": "^1.7.0",
  88. "biased-opener": "^0.2.8",
  89. "browser-sync": "^2.26.3",
  90. "cash-cat": "^0.2.0",
  91. "codacy-coverage": "^3.4.0",
  92. "codeclimate-test-reporter": "^0.5.1",
  93. "codecov": "^3.1.0",
  94. "coveralls": "^3.0.2",
  95. "cross-env": "^5.2.0",
  96. "eslint": "^5.12.0",
  97. "globify": "^2.3.4",
  98. "istanbul": "^0.4.5",
  99. "jasmine": "^3.3.1",
  100. "jest": "^20.0.4",
  101. "jest-cli": "^20.0.4",
  102. "jsonpath": "^1.0.0",
  103. "nodemon": "^1.18.9",
  104. "npm-run-all": "^4.1.5",
  105. "prismjs": "^1.15.0",
  106. "typescript": "^3.2.2",
  107. "unminified-webpack-plugin": "^1.4.2",
  108. "watch": "^1.0.1",
  109. "webpack": "^3.10.0"
  110. }
  111. }