-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.99 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
45
46
47
48
49
{
"name": "save-in",
"version": "3.7.3",
"license": "MIT",
"scripts": {
"build": "env -u WEB_EXT_API_KEY -u WEB_EXT_API_SECRET web-ext build --overwrite-dest -i test docs yarn.lock yarn-error.log",
"build:firefox:submit": "web-ext sign",
"d": "env -u WEB_EXT_API_KEY -u WEB_EXT_API_SECRET web-ext run --verbose --start-url about:debugging --start-url about:addons",
"d:chromium": "web-ext run --target chromium",
"d:noenv": "web-ext run --verbose",
"d:win:stable": "web-ext run --start-url about:debugging#/runtime/this-firefox --start-url about:addons --verbose --firefox=\"C:/Program Files/Mozilla Firefox/firefox.exe\" -s=\".\"",
"d:win:nightly": "web-ext run --start-url about:debugging#/runtime/this-firefox --start-url about:addons --verbose --firefox=\"C:/Program Files/Firefox Nightly/firefox.exe\" -s=\".\"",
"lint": "web-ext lint && eslint src test",
"lint:fix": "eslint --fix src test",
"mockserve": "node test/mockserver",
"prettier": "echo '💈 Listing files to format. Run yarn prettier:write to write.\n' && prettier --list-different src/**/*.js src/*.js test/**/*.js test/*.js",
"prettier:write": "prettier --write src/**/*.js src/*.js test/**/*.js test/*.js",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"eslint": "8.11.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"jest-webextension-mock": "^3.7.19",
"koa": "^2.13.4",
"koa-logger": "^3.2.1",
"koa-route": "^3.2.0",
"koa-static": "^5.0.0",
"prettier": "^2.6.0",
"web-ext": "^6.7.0"
},
"jest": {
"setupFiles": [
"jest-webextension-mock"
],
"modulePathIgnorePatterns": [
"<rootDir>/web-ext-artifacts/"
],
"testEnvironment": "jsdom"
},
"dependencies": {}
}