-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.9 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
66
67
68
69
70
{
"name": "webpack-extension-manifest-plugin",
"version": "0.8.0",
"description": "Creates manifest json file based you config",
"license": "MIT",
"repository": "Scrum/webpack-extension-manifest-plugin",
"homepage": "https://github.com/Scrum/webpack-extension-manifest-plugin#readme",
"bugs": "Scrum/webpack-extension-manifest-plugin/issues",
"author": {
"name": "Ivan Demidov",
"email": "Scrum@list.ru",
"url": "https://twitter.com/Scrum_"
},
"main": "lib/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
"prepublishOnly": "npm run build",
"build": "node build.mjs",
"test": "nyc ava"
},
"files": [
"lib/"
],
"keywords": [
"webpack",
"plugin",
"browser",
"extension",
"manifest",
"json"
],
"dependencies": {
"core-js": "^3.1.4",
"deepmerge": "^4.0.0",
"schema-utils": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"ava": "*",
"babel-eslint": "^10.0.2",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.0",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.0.23",
"coveralls": "^3.0.5",
"eslint": "^7.14.0",
"eslint-config-xo": "^0.33.1",
"eslint-config-xo-space": "^0.25.0",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-unicorn": "^23.0.0",
"husky": "^4.3.0",
"json-schema-to-typescript": "^10.1.4",
"lint-staged": "^10.5.1",
"load-json-file": "^6.2.0",
"nyc": "^15.1.0",
"path-exists": "^4.0.0",
"tempy": "^1.0.0",
"webpack": "^5.6.0"
}
}