-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.62 KB
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
45
46
47
48
{
"name": "discogs-enhancer",
"version": "3.12.1",
"description": "A web extension that adds useful functionality to Discogs.com! https://www.discogs-enhancer.com",
"main": "index.js",
"scripts": {
"build:chrome": "NODE_ENV=production PLATFORM=chrome webpack --progress",
"build:firefox": "NODE_ENV=production PLATFORM=firefox webpack --progress",
"build": "npm-run-all build:chrome build:firefox",
"watch:chrome": "NODE_ENV=development PLATFORM=chrome webpack --watch --progress",
"watch:firefox": "NODE_ENV=development PLATFORM=firefox webpack --watch --progress",
"watch": "npm-run-all --parallel watch:chrome watch:firefox",
"bump": "node version-bump.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salcido/discogs-enhancer.git"
},
"keywords": [],
"author": "Matthew Salcido",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/salcido/discogs-enhancer/issues"
},
"homepage": "https://github.com/salcido/discogs-enhancer#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.3",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.24.2",
"npm-run-all": "^4.1.5",
"puppeteer": "^2.1.1",
"sass": "^1.62.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"url-loader": "^4.1.1",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"clipboardy": "^3.0.0"
}
}