-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "speed-dial-quantum",
"description": "Minimal speed-dial extension with support for keyboard shortcuts & importing Speed Dial pages",
"private": true,
"repository": "https://github.com/Ahimta/speed-dial-quantum",
"author": "Abdullah Alansari",
"license": "GPL-3.0-only",
"scripts": {
"audit": "yarn audit",
"build": "rollup --config",
"clean": "git clean -idx",
"coverage": "jest --coverage src/**/*.spec.js",
"lint": "npm run prettier && npm run standard && web-ext lint",
"package": "web-ext build",
"prettier": "prettier --write *.json *.md *.js src/**/*.js",
"start": "web-ext run",
"standard": "standard --fix *.js src/**/*.js",
"test": "npm run lint",
"test:unit": "jest src/**/*.spec.js",
"watch": "rollup --config --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@sentry/browser": "^5.11.1",
"faker": "^4.1.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.2",
"prettier": "^2.0.5",
"rollup": "^2.7.6",
"standard": "^14.3.1",
"web-ext": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*.json,*.md}": [
"prettier --write"
],
"{*.js,src/**/*.js}": [
"prettier --write",
"standard --fix"
]
},
"standard": {
"globals": [
"$",
"browser",
"chrome",
"describe",
"expect",
"test",
"SDQ"
]
}
}