package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@soda/get-current-script",
  3. "version": "1.0.2",
  4. "description": "get the current executing script, with polyfills for IE9+ and Firefox",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "serve .",
  8. "test:chrome": "nightwatch -t test.js -e chrome",
  9. "test:firefox": "nightwatch -t test.js -e firefox",
  10. "test:ie": "nightwatch -t test.js -e ie",
  11. "ci:chrome": "yarn start-test start http://localhost:5000 test:chrome",
  12. "ci:firefox": "yarn start-test start http://localhost:5000 test:firefox",
  13. "ci:ie": "yarn start-test start http://localhost:5000 test:ie",
  14. "ci": "yarn ci:chrome && yarn ci:firefox && yarn ci:ie"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/sodatea/get-current-script.git"
  19. },
  20. "author": "Haoqun Jiang",
  21. "license": "MIT",
  22. "dependencies": {},
  23. "devDependencies": {
  24. "chromedriver": "^83.0.0",
  25. "geckodriver": "^1.19.1",
  26. "iedriver": "^3.14.1",
  27. "nightwatch": "^1.3.4",
  28. "selenium-server": "^3.141.59",
  29. "serve": "^11.3.1",
  30. "start-server-and-test": "^1.10.8"
  31. },
  32. "publishConfig": {
  33. "access": "public"
  34. }
  35. }