-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.09 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
{
"name": "yank",
"version": "2.0.0",
"private": true,
"description": "Yank current page URL to clipboard as various markup formats",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"web-ext": "web-ext run --devtools -s addon -f ./scripts/ffdev.sh",
"webpack": "webpack --config webpack.dev.js",
"clean": "rm -rf addon/background addon/popup",
"build": "webpack --config webpack.prod.js",
"package": "web-ext build -s addon -a releases --overwrite-dest",
"prod": "npm run clean && npm run build && npm run package",
"dev": "concurrently --kill-others \"npm:web-ext\" \"npm:webpack\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/roosta/yank.git"
},
"author": "Daniel Berg",
"license": "MIT",
"bugs": {
"url": "https://github.com/roosta/yank/issues"
},
"homepage": "https://github.com/roosta/yank#readme",
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
"eslint-plugin-mozilla": "^3.0.1",
"web-ext": "^7.5.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}