-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"name": "gulp-cssbeautify",
"version": "3.0.1",
"description": "Reindent and reformat CSS",
"main": "index.js",
"directories": {
"test": "test"
},
"license": "MIT",
"repository": "jonkemp/gulp-cssbeautify",
"author": "Jonathan Kemp <kempdogg@gmail.com> (http://jonkemp.com/)",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"lint": "gulp lint",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=lcov"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"cssbeautify",
"css",
"formatter"
],
"dependencies": {
"cssbeautify": "^0.3.1",
"plugin-error": "^1.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"should": "^13.2.3",
"vinyl": "^2.2.1"
}
}