-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 859 Bytes
/
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
{
"name": "computed-style-to-inline-style",
"version": "4.0.0",
"description": "Convert a HTML element's computed CSS to inline CSS.",
"author": "Luke Horvat",
"license": "MIT",
"repository": "lukehorvat/computed-style-to-inline-style",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack --mode production",
"test": "webpack serve --mode development --config ./test/webpack.config.mjs"
},
"dependencies": {},
"devDependencies": {
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.4.1",
"typescript": "^5.1.6",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"keywords": [
"css",
"style",
"stylesheet",
"computed",
"inline",
"element",
"html",
"browser",
"dom"
]
}