-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
44 lines (44 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "abortcontroller-polyfill",
"version": "1.7.6",
"description": "Polyfill/ponyfill for the AbortController DOM API + optional patching of fetch (stub that calls catch, doesn't actually abort request).",
"main": "dist/umd-polyfill.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"test": "npm run build && npm-run-all test-headless eslint",
"test-headless": "cross-env EE_BROWSER=chrome EE_HEADLESS=1 ./scripts/wdio-suppress-exitcode",
"test-chrome": "cross-env EE_BROWSER=chrome ./scripts/wdio-suppress-exitcode",
"test-firefox": "cross-env EE_BROWSER=firefox ./scripts/wdio-suppress-exitcode",
"test-inspect-brk": "cross-env EE_WDIO_EXEC_ARGV=--inspect-brk npm run test-chrome",
"test-verbose": "cross-env EE_BROWSER=chrome EE_LOG_LEVEL=verbose wdio wdio.conf.js",
"upgrade-packages": "npx npm-check --update",
"eslint": "eslint --fix src/ tests/"
},
"keywords": [],
"repository": "mo/abortcontroller-polyfill",
"author": "Martin Olsson <martin@minimum.se> (https://mo.github.io)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-member-expression-literals": "^7.18.6",
"@babel/preset-env": "^7.19.3",
"@wdio/cli": "^9.2.10",
"@wdio/jasmine-framework": "^9.2.8",
"@wdio/local-runner": "^9.2.8",
"@wdio/spec-reporter": "^9.2.8",
"cross-env": "^7.0.3",
"detect-browser": "^5.3.0",
"eslint": "^8.25.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"webdriverio": "^9.2.8"
}
}