-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 2.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "bandcampenhancementsuite",
"version": "9.9.9",
"description": "Chrome extension adding extra features to the Bandcamp experience.",
"dependencies": {
"idb": "^5.0.3",
"web-audio-beat-detector": "^8.2.14",
"winston": "^3.3.2"
},
"devDependencies": {
"@percy/cli": "^1.0.0-beta.76",
"@percy/puppeteer": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"karma": "^6.3.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^10.2.0",
"prettier": "^1.19.1",
"puppeteer": "^13.5.1",
"raw-loader": "^4.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"sinon-chrome": "^3.0.1",
"sinon-stub-promise": "^4.0.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11"
},
"scripts": {
"test": "npx karma start --single-run",
"test:watch": "npx karma start",
"lint": "npx eslint ./src/ ./test/",
"lint:fix": "npm run lint -- --fix",
"build": "webpack --config webpack.config.js",
"build:dev": "npm run build -- --mode=development",
"build:watch": "npm run build:dev -- --watch --progress",
"snapshots": "percy exec -- node snapshots.js",
"clean": "rm -fr ./node_modules ./dist",
"package": "npm run build && zip BandcampEnhancementSuite_chrome.zip LICENSE _locales/**/* icons/* css/* dist/* svg/* manifest.json html/browser_action.html && cp manifest.json manifest.json.backup && sed -i '' -e 's,\"service_worker\": \"dist/background.js\",\"scripts\": [\"dist/background.js\"],g' ./manifest.json && zip BandcampEnhancementSuite_firefox.zip LICENSE _locales/**/* icons/* css/* dist/* manifest.json html/browser_action.html && mv manifest.json.backup manifest.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sabjorn/BandcampEnhancementSuite.git"
},
"author": "S. A. Bjørn <info@sabjorn.net> (http://sabjorn.net/)",
"contributors": [
"Eric McNiece <hello@emc2innovation.com> (https://github.com/emcniece)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sabjorn/BandcampEnhancementSuite/issues"
},
"homepage": "https://github.com/sabjorn/BandcampEnhancementSuite#readme"
}