forked from matype/scssfmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 897 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "scssfmt",
"version": "1.0.7",
"description": "Standard SCSS code formatter",
"main": "index.js",
"scripts": {
"test": "ava"
},
"ava": {
"files": [
"test/**/*.js"
],
"verbose": true
},
"bin": {
"scssfmt": "cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/morishitter/scssfmt/git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"css",
"sass",
"scss",
"format",
"formatter",
"code style",
"beautifier",
"postcss-plugin",
"postcss"
],
"author": "Masaaki Morishita",
"license": "MIT",
"dependencies": {
"chalk": "^2.3.2",
"chokidar": "^2.0.2",
"diff": "^3.5.0",
"globby": "^8.0.1",
"minimist": "^1.2.0",
"postcss": "^6.0.19",
"postcss-scss": "^1.0.4",
"stdin": "^0.0.1"
},
"devDependencies": {
"ava": "^0.25.0"
}
}