-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "posthtml-loader",
"description": "PostHTML for Webpack",
"version": "2.0.1",
"main": "lib/index.js",
"engines": {
"node": ">= 10"
},
"files": [
"lib"
],
"scripts": {
"lint": "standard --env jest",
"clean": "rm -rf jest coverage jsdoc-api dmd test/builds",
"pretest": "npm run clean",
"test": "jest --verbose --coverage",
"docs": "jsdoc2md lib/index.js > LOADER.md",
"release": "standard-version"
},
"dependencies": {
"loader-utils": "^2.0.0",
"posthtml": "^0.13.3",
"posthtml-load-config": "^2.0.0",
"schema-utils": "^2.5.0"
},
"devDependencies": {
"coveralls": "^3.0.7",
"del": "^5.1.0",
"jest": "^26.4.2",
"jsdoc-to-markdown": "^6.0.1",
"memory-fs": "^0.5.0",
"posthtml-sugarml": "1.0.0-alpha3",
"standard": "^14.3.1",
"standard-version": "^9.0.0",
"webpack": "^4.41.2"
},
"keywords": [
"HTML",
"Loader",
"PostHTML",
"Webpack"
],
"author": "Michael Ciniawsky <[email protected]> (@michael-ciniawsky)",
"contributors": [
{
"name": "Ivan Demidov",
"email": "[email protected]",
"url": "https://twitter.com/Scrum_"
}
],
"repository": "https://github.com/posthtml/posthtml-loader.git",
"bugs": "https://github.com/posthtml/posthtml-loader/issues",
"homepage": "https://github.com/posthtml/posthtml-loader",
"license": "MIT"
}