-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
33 lines (33 loc) · 1.13 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
{
"name": "scrollupfolder-addon",
"title": "Scroll Up Folder",
"description": "A Firefox extension to browse for folders of a website.",
"version": "6.1.0",
"author": "Bruce Bujon (Perfect Slayer)",
"homepage": "https://github.com/PerfectSlayer/scrollupfolder",
"bugs": {
"url": "https://github.com/PerfectSlayer/scrollupfolder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerfectSlayer/scrollupfolder.git"
},
"license": "MPL-1.1",
"keywords": [
"firefox",
"webextensions"
],
"devDependencies": {
"eslint": "^6.0.1",
"eslint-plugin-json": "^1.4.0",
"mocha": "^5.2.0",
"web-ext": "^3.1.0"
},
"scripts": {
"eslint": "eslint addon --ext=js,json",
"test": "mocha",
"lint": "web-ext lint --source-dir=addon",
"run": "web-ext run --source-dir=addon --start-url=https://github.com/PerfectSlayer/scrollupfolder --keep-profile-changes --firefox-profile=./.profile",
"build": "web-ext build --source-dir=addon --artifacts-dir=build --overwrite-dest"
}
}