package.json 532 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "miniprogram-compiler",
  3. "version": "0.2.1",
  4. "description": "compiler",
  5. "main": "index.js",
  6. "author": "wechat-miniprogram",
  7. "scripts": {
  8. "test": "jest ./test/* --bail"
  9. },
  10. "jest": {
  11. "testEnvironment": "jsdom",
  12. "testURL": "https://jest.test",
  13. "collectCoverageFrom": [
  14. "src/**/*.js"
  15. ],
  16. "moduleDirectories": [
  17. "node_modules",
  18. "src"
  19. ]
  20. },
  21. "devDependencies": {
  22. "jest": "^23.6.0"
  23. },
  24. "dependencies": {
  25. "glob": "^7.1.3",
  26. "unescape-js": "^1.1.1"
  27. }
  28. }