This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 1.83 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
71
72
73
74
75
76
77
78
79
{
"name": "posthtml-uglify",
"version": "2.0.0",
"description": "A PostHTML plugin to rewrite CSS identifiers in HTML",
"main": "index.js",
"scripts": {
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"bench": "node ./scripts/benchmark.js",
"cz": "git-cz",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/Rebelmail/posthtml-uglify.git"
},
"keywords": [
"posthtml",
"posthtml-plugin",
"html",
"uglify",
"compress",
"minify"
],
"author": "Rebel",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rebelmail/posthtml-uglify/issues"
},
"homepage": "https://github.com/Rebelmail/posthtml-uglify",
"dependencies": {
"@gorebel/css-class-generator": "^2.0.0",
"postcss-safe-parser": "^4.0.1",
"postcss-selector-parser": "^5.0.0-rc.4",
"posthtml": "^0.11.3",
"posthtml-parser": "^0.4.1",
"posthtml-render": "^1.1.4"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt": "^7.2.1",
"benchmark": "^2.1.4",
"commitizen": "^3.0.4",
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"standard-version": "^4.4.0"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}