-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.19 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.19 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "inline-html-template-plugin",
"version": "0.0.1",
"description": "A Webpack plugin for inlining fully rendered HTML as a template string.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "npm run lint && npm run build",
"build": "tsc",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WTW-IM/inline-html-template-plugin.git"
},
"keywords": [
"Web Components",
"webpack",
"webpack4",
"webpack-plugin",
"inline",
"internal",
"embedded",
"document",
"html",
"markup"
],
"author": "Steve Matney",
"license": "ISC",
"bugs": {
"url": "https://github.com/WTW-IM/inline-html-template-plugin/issues"
},
"homepage": "https://github.com/WTW-IM/inline-html-template-plugin#readme",
"lint-staged": {
"src/**/*.(j|t)s?(x)": [
"prettier --write",
"eslint --fix"
],
"*.md": [
"prettier --write --parser markdown"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"html-webpack-plugin": "^3.0.0",
"webpack": "^4.0.0"
},
"dependencies": {
"webpack-sources": "^1.4.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/html-webpack-plugin": "^3.2.2",
"@types/tapable": "^1.0.5",
"@types/webpack": "^4.41.10",
"@types/webpack-sources": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"conventional-changelog-eslint": "^3.0.4",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"html-webpack-plugin": "^4.0.3",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "1.19.1",
"semantic-release": "^19.0.3",
"tapable": "^1.1.3",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
}
}