-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.39 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
63
64
65
{
"name": "hex-tooltip-extension",
"fullName": "Hex: Tooltip - Tooltips for Dead By Daylight",
"version": "1.0.14",
"description": "Tooltips for Dead by Daylight anywhere on the web.",
"scripts": {
"start": "yarn manifest && webpack --mode=production",
"dev": "yarn manifest && webpack --mode=development --watch",
"test": "yarn manifest && nyc ts-mocha --reporter min --require @babel/register \"./test/**/*.ts\"",
"coverage": "nyc --reporter=lcov yarn test",
"snyk": "snyk protect",
"manifest": "node scripts/manifest.js",
"deploy": "yarn snyk && yarn start && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenpoole/hex-tooltip-extension.git"
},
"author": "Stephen Poole",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephenpoole/hex-tooltip-extension/issues"
},
"homepage": "https://github.com/stephenpoole/hex-tooltip-extension#readme",
"dependencies": {
"@stephenpoole/hex-tooltip": "^1.0.38"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.19",
"@types/node": "^15.12.4",
"@types/webpack": "^4.4.24",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-loader": "^8.2.2",
"babel-plugin-const-enum": "^1.0.1",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"codecov": "^3.8.2",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"filemanager-webpack-plugin": "^6.1.2",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"snyk": "^1.639.0",
"source-map": "^0.7.3",
"source-map-loader": "^3.0.0",
"source-map-support": "^0.5.10",
"terser-webpack-plugin": "^5.1.4",
"ts-mocha": "^8.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
}
}