-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.26 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": "share-on-twitter",
"version": "0.0.5",
"description": "Share current page on Twitter",
"main": "./src/background.js",
"scripts": {
"lint": "eslint ./src/**/*.js --fix",
"prepare": "npm run lint && rm -fr dist && mkdir dist && cp -R src/{icons,manifest.json} dist",
"build": "npm run prepare && rollup -c",
"dev": "npm run prepare && rollup -c -w",
"pack": "npm run build && zipack ./src/manifest.json"
},
"keywords": [
"chrome",
"extension",
"twitter",
"share",
"tab"
],
"author": "Roberto Entringer",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"archiver": "^5.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"zipack": "1.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertoentringer/chrome-share-on-twitter.git"
},
"bugs": {
"url": "https://github.com/robertoentringer/chrome-share-on-twitter/issues"
},
"homepage": "https://github.com/robertoentringer/chrome-share-on-twitter#readme"
}