-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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": "aims-helper-moz",
"version": "0.1.0",
"description": "Firefox Port of AIMS-Helper Extension",
"main": "index.js",
"dependencies": {
"eslint-config-airbnb": "^18.2.0",
"html2pdf.js": "^0.9.2"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.1.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{json,css,scss,md,html}": [
"prettier --write"
],
"./**/*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/RachitKeertiDas/AIMS-Helper-Firefox.git"
},
"author": "Rachit Keerti Das",
"license": "MIT",
"bugs": {
"url": "https://github.com/RachitKeertiDas/AIMS-Helper-Firefox/issues"
},
"homepage": "https://github.com/RachitKeertiDas/AIMS-Helper-Firefox#readme"
}