forked from millermedeiros/esformatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
{
"name": "esformatter",
"version": "0.6.1",
"description": "ECMAScript code beautifier/formatter",
"main": "lib/esformatter.js",
"bin": {
"esformatter": "./bin/esformatter"
},
"scripts": {
"test": "node test/runner.js",
"lint": "jshint lib/*.js 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": [
"beautifier",
"beautify",
"formatter",
"ecmascript",
"javascript",
"syntax",
"source",
"esprima"
],
"author": {
"name": "Miller Medeiros",
"url": "http://blog.millermedeiros.com/"
},
"devDependencies": {
"chai": "1.4",
"esformatter-pipe-test": "file:test/pipe",
"esformatter-test-plugin": "file:test/plugin",
"esprima": "^2.0.0",
"jshint": "~2.3.0",
"mocha": "https://github.com/millermedeiros/mocha/tarball/latest",
"mockery": "^1.4.0"
},
"dependencies": {
"debug": "^0.7.4",
"glob": "^5.0.3",
"mout": ">=0.9 <2.0",
"npm-run": "^1.1.1",
"optimist": "~0.6.0",
"resolve": "^1.1.5",
"rocambole": ">=0.5 <2.0",
"rocambole-indent": "^2.0.3",
"rocambole-linebreak": "^1.0.0",
"rocambole-node": "~1.0",
"rocambole-token": "^1.1.2",
"rocambole-whitespace": "^1.0.0",
"semver": "~2.2.1",
"stdin": "*",
"strip-json-comments": "~0.1.1"
},
"esformatter": {
"root": true
},
"license": "MIT"
}