-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1022 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 1022 Bytes
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
{
"name": "github-quick-metadata",
"version": "2.1.1",
"type": "module",
"description": "Quick access to GitHub repository metadata via browser extension and userscript",
"scripts": {
"build": "npm run build:all && npm run build:icons",
"build:all": "npm run build:chrome && npm run build:firefox && npm run build:userscript",
"build:chrome": "NODE_ENV=production rollup -c --environment TARGET:chrome",
"build:firefox": "NODE_ENV=production rollup -c --environment TARGET:firefox",
"build:userscript": "NODE_ENV=production rollup -c --environment TARGET:userscript",
"build:icons": "node scripts/create-simple-icons.js",
"clean": "rm -rf dist/",
"rebuild": "npm run clean && npm run build",
"lint": "eslint src/**/*.js",
"dev": "rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^1.0.0",
"eslint": "^8.0.0",
"rollup": "^3.0.0"
},
"license": "MIT"
}