forked from s7eph4n/codepainter
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "codepainter",
"version": "0.4.5",
"author": "Jakub Wieczorek <[email protected]>",
"description": "A JavaScript beautifier that can both infer coding style and transform code to reflect that style. You can also set style preferences explicitly in a variety of ways.",
"contributors": [
"Jed Mao <jed.hunsaker[at]gmail.com>",
"Jakub Wieczorek <[email protected]> (http://jakubw.net)"
],
"main": "./codepainter",
"bin": {
"codepaint": "./bin/codepaint",
"codepainter": "./bin/codepaint"
},
"scripts": {
"test": "mocha -R spec",
"codepaint": "codepaint xform -e **/**.js"
},
"repository": {
"type": "git",
"url": "http://github.com/jedmao/codepainter.git"
},
"bugs": {
"url": "https://github.com/jedmao/codepainter/issues"
},
"keywords": [
"code",
"formatting",
"style",
"editorconfig"
],
"dependencies": {
"async": "^2.0.0-rc.5",
"cli-color": "^1.1.0",
"editorconfig": "^0.13.2",
"esprima": "^2.7.2",
"gitlike-cli": "^0.1.0",
"glob": "^7.0.3",
"memorystream": "^0.3.1",
"mkdirp": "^0.5.1",
"node.extend": "^1.1.5"
},
"devDependencies": {
"mocha": "^2.5.3",
"should": "^8.4.0"
},
"engine": "node >= 0.10.6",
"license": "MIT"
}