-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
89 lines (89 loc) · 2.06 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
{
"name": "esformatter",
"version": "0.11.3",
"description": "ECMAScript code beautifier/formatter",
"main": "lib/esformatter.js",
"bin": {
"esformatter": "./bin/esformatter"
},
"files": [
"bin",
"doc",
"lib"
],
"engines": {
"node": ">=8"
},
"scripts": {
"test": "node test/runner.js",
"lint": "jshint lib/*.js lib/**/*.js test/*.js && ./bin/esformatter --diff 'lib/**/*.js' 'test/*.js'",
"format": "esformatter -i 'lib/**/*.js' 'test/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/millermedeiros/esformatter.git"
},
"bugs": {
"url": "https://github.com/millermedeiros/esformatter/issues"
},
"directories": {
"doc": "./doc",
"bin": "./bin",
"lib": "./lib"
},
"keywords": [
"babel",
"beautifier",
"beautify",
"ecmascript",
"esprima",
"format",
"formatter",
"javascript",
"jscs",
"source",
"style",
"syntax"
],
"author": {
"name": "Miller Medeiros",
"url": "http://blog.millermedeiros.com/"
},
"devDependencies": {
"chai": "^4.2.0",
"esformatter-pipe-test": "file:test/pipe",
"esformatter-preset-fake-1": "file:test/preset/fake1",
"esformatter-preset-fake-2": "file:test/preset/fake2",
"esformatter-test-plugin": "file:test/plugin",
"jshint": "^2.11.0",
"mocha": "^7.1.0",
"mockery": "^2.1.0"
},
"dependencies": {
"acorn-to-esprima": "^2.0.6",
"babel-traverse": "^6.4.5",
"debug": "^4.1.1",
"disparity": "^3.0.0",
"esformatter-parser": "^1.0.0",
"glob": "^7.1.6",
"minimatch": "^3.0.2",
"minimist": "^1.2.5",
"mout": "^1.2.2",
"npm-run": "^5.0.1",
"resolve": "^1.15.1",
"rocambole": ">=0.7 <2.0",
"rocambole-indent": "^2.0.4",
"rocambole-linebreak": "^1.0.2",
"rocambole-node": "~1.0",
"rocambole-token": "^1.1.2",
"rocambole-whitespace": "^1.0.0",
"stdin": "*",
"strip-json-comments": "^3.0.1",
"supports-color": "^7.1.0",
"user-home": "^2.0.0"
},
"esformatter": {
"root": true
},
"license": "MIT"
}