-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
executable file
·84 lines (84 loc) · 2.18 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
{
"name": "fecs",
"version": "1.7.0-beta.1",
"description": "Front End Code Style Suite",
"main": "index.js",
"scripts": {
"lint": "node ./bin/fecs --type=js --rule",
"coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node -x \"{cli,lib/css/rules}/*.js\" --captureExceptions test/",
"test": "npm run lint && npm run coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postinstall": "node scripts/install.js --allow-root"
},
"bin": {
"fecs": "./bin/fecs"
},
"repository": {
"type": "git",
"url": "https://github.com/ecomfe/fecs"
},
"keywords": [
"fecs",
"jscs",
"jshint",
"jslint",
"eslint",
"csslint",
"csshint",
"htmllint",
"htmlhint",
"jsbeautify",
"cssbeautify",
"htmlbeautify"
],
"author": "chris <[email protected]>",
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=5"
},
"bugs": {
"url": "https://github.com/ecomfe/fecs/issues"
},
"homepage": "https://github.com/ecomfe/fecs",
"dependencies": {
"babel-eslint": "^10.0.1",
"chalk": "^2.1.0",
"csscomb": "^4.2.0",
"csshint": "stable",
"doctrine2": "latest",
"esformatter": "^0.10.0",
"esformatter-braces": "^1.2.1",
"esformatter-dot-notation": "^1.3.1",
"esformatter-fecs": "latest",
"esformatter-limit-linebreaks": "0.0.3",
"esformatter-parseint": "^1.0.3",
"esformatter-quotes": "^1.1.0",
"esformatter-remove-trailing-commas": "^1.0.1",
"esformatter-semicolons": "^1.1.2",
"esformatter-spaced-lined-comment": "^2.0.1",
"eslint": "^5.9.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.4.0",
"htmlcs": "stable",
"lesslint": "stable",
"loophole": "^1.1.0",
"manis": "^0.3.4",
"map-stream": "^0.1.0",
"minimatch": "^3.0.2",
"minimist": "^1.2.0",
"msee": "^0.3.3",
"reserved-words": "^0.1.2",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jasmine-node": "^2.0.0",
"mock-fs": "^4.7.0",
"mock-require": "^3.0.2"
}
}