-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.4 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
45
46
47
{
"name": "discogs-enhancer",
"version": "3.8.0",
"description": "A Chrome extension that adds useful functionality to Discogs.com! https://www.discogs-enhancer.com",
"main": "index.js",
"scripts": {
"build": "webpack --progress",
"build:dev": "NODE_ENV=development npm run build",
"build:production": "NODE_ENV=production npm run build",
"bump": "node version-bump.js",
"test": "mocha",
"watch": "NODE_ENV=development webpack --watch --progress"
},
"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",
"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",
"mocha": "^9.2.2"
}
}