-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "maltdecoder",
"version": "1.0.0",
"description": "Chrome plugin to decode SMWS codes on the UK and JP sites",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --env production",
"ci": "webpack --env ci",
"test": "nyc --reporter=text mocha test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elliottback/MaltDecoder.git"
},
"private": true,
"keywords": [
"scotch",
"whisky",
"society",
"smws",
"chrome"
],
"author": "Elliott C. Bäck",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/elliottback/MaltDecoder/issues"
},
"homepage": "https://github.com/elliottback/MaltDecoder#readme",
"devDependencies": {
"@babel/preset-env": "^8.0.5",
"axios": "^1.20.0",
"babel-loader": "^10.1.1",
"chai": "^6.2.2",
"copy-webpack-plugin": "^14.0.0",
"jsdom": "^30.0.1",
"lodash": "^4.18.1",
"mocha": "^12.0.1",
"nanoid": ">=6.0.1",
"nyc": "^18.0.0",
"puppeteer": "^25.11.0",
"webpack": "^5.111.0",
"webpack-cli": "^7.2.3",
"zip-webpack-plugin": "^4.0.3",
"semantic-release": "25.0.9"
},
"overrides": {
"@istanbuljs/load-nyc-config": {
"js-yaml": "^3.15.2"
},
"js-yaml": "^4.3.2",
"serialize-javascript": "^7.0.5",
"diff": "^8.0.3"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/github",
{
"assets": [
"dist/MaltDecoder.zip"
]
}
]
]
}
}