forked from the-browser-toolbox/save-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "save-notes",
"version": "1.0.0",
"description": "extension which saves notes while browsing ",
"main": "index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"prettier": "prettier-check src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-browser-toolbox/save-notes.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-browser-toolbox/save-notes/issues"
},
"homepage": "https://github.com/the-browser-toolbox/save-notes#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"gulp": "^4.0.2",
"husky": "^4.3.4",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prettier-check": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
]
},
"dependencies": {
"gulp-imagemin": "^7.1.0",
"gulp-uglify": "^3.0.2"
}
}