-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 969 Bytes
/
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
{
"name": "chrome-ext-ntp-bookmarkers",
"description": "Chrome extension new tab bookmarkers",
"main": "./src/background.js",
"scripts": {
"lint": "eslint src --fix",
"pack": "zipack src/manifest.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers.git"
},
"keywords": [
"chrome",
"extension",
"new tab page",
"ntp"
],
"author": "Roberto Entringer",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues"
},
"homepage": "https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers#readme",
"devDependencies": {
"archiver": "^5.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"zipack": "1.0.2"
},
"dependencies": {
"sortablejs": "^1.12.0"
}
}