-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
78 lines (78 loc) · 1.59 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
{
"name": "jsfmt",
"description": "gofmt for javascript",
"version": "0.5.3",
"homepage": "https://github.com/rdio/jsfmt",
"main": "./lib/index.js",
"engines": {
"node": ">=0.4.0"
},
"bin": {
"jsfmt": "./bin/jsfmt"
},
"scripts": {
"test": "grunt && grunt fmt && grunt verify",
"fmt": "grunt fmt"
},
"files": [
"bin",
"lib",
"LICENSE.MD"
],
"maintainers": [
{
"name": "Jim Fleming",
"email": "[email protected]"
}
],
"dependencies": {
"deep-extend": "~0.4.0",
"docopt": "~0.4.1",
"escodegen": "~1.7.0",
"esformatter": "~0.9.0",
"esformatter-braces": "~1.2.1",
"esformatter-var-each": "~2.1.0",
"esprima": "~2.7.0",
"falafel": "~1.2.0",
"glob": "~5.0.15",
"rc": "~1.1.2",
"rocambole": "~0.7.0",
"tmp": "~0.0.23",
"underscore": "~1.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rdio/jsfmt"
},
"bugs": {
"url": "https://github.com/rdio/jsfmt/issues"
},
"licenses": [
{
"type": "Apache2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"ast",
"javascript",
"parser",
"rewrite",
"syntax",
"format",
"search"
],
"devDependencies": {
"coveralls": "~2.11.4",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-jshint": "~0.11.3",
"grunt-exec": "~0.4.5",
"grunt-mocha-test": "~0.12.7",
"jscoverage": "~0.6.0",
"json-stable-stringify": "~1.0.0",
"mocha": "~2.3.3",
"mocha-lcov-reporter": "1.0.0",
"should": "~7.1.1"
}
}