-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 3.55 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "sandpaper",
"author": "Christopher Petta",
"license": "MIT",
"version": "1.4.6",
"description": "Sandpaper is a commandline tool that's used to smooth out the rough edges when coding websites using HTML, CSS, and Javascript.",
"main": "gulpfile.js",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/cpetta/sandpaper.git"
},
"bin": {
"sandpaper": "./cli.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"gulp": "gulp",
"test": "nyc --reporter=html --reporter=text mocha --check-leaks --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"xo": "xo --env=node"
},
"keywords": [
"gulp,",
"gulpfile",
"toolchain",
"linting",
"website-optimization"
],
"browserslist": [
"last 2 versions"
],
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn xo",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"autoprefixer": "^10.0.0",
"browser-sync": "^2.26.14",
"colorguard": "^1.2.1",
"doiuse": "^4.4.0",
"eslint": "^8.12.0",
"eslint-config-xo": "^0.40.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-changed": "^4.0.2",
"gulp-changed-in-place": "^2.3.0",
"gulp-clean-css": "^4.2.0",
"gulp-eslint7": "^0.3.1",
"gulp-html-postcss": "^7.1.4",
"gulp-htmlhint": "^4.0.1",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^8.0.0",
"gulp-jshint": "^2.1.0",
"gulp-postcss": "^9.0.0",
"gulp-purgecss": "^4.0.3",
"gulp-stylelint": "^13.0.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^5.0.1",
"jshint": "^2.12.0",
"jshint-more-stylish": "^1.0.1",
"markdownlint": "^0.25.1",
"meow": "^10.0.0",
"postcss": "^8.2.15",
"postcss-normalize": "^10.0.0",
"postcss-preset-env": "^7.4.3",
"postcss-reporter": "^7.0.0",
"postcss-safe-parser": "^6.0.0",
"postcss-unprefix": "^2.1.4",
"pump": "^3.0.0",
"rehype-parse": "^8.0.4",
"rehype-retext": "^3.0.2",
"rehype-stringify": "^9.0.3",
"remark-retext": "^5.0.1",
"retext-contractions": "^5.2.0",
"retext-english": "^4.1.0",
"retext-indefinite-article": "^4.1.0",
"retext-passive": "^4.2.0",
"retext-quotes": "^5.2.0",
"retext-redundant-acronyms": "^4.3.0",
"retext-repeated-words": "^4.2.0",
"retext-sentence-spacing": "^5.2.0",
"stylelint": "^14.6.1",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"through2": "^4.0.2",
"tslint": "^6.0.0",
"typescript": "^4.0.2",
"uglify-js": "^3.13.6",
"unified": "^10.1.2",
"unified-engine-gulp": "^9.0.0",
"update-notifier": "^5.0.0",
"xo": "^0.48.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"coveralls": "^3.1.0",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2"
}
}