-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "grunt-codepainter",
"description": "Grunt plugin for codepainter-A JavaScript beautifier that can both infer coding style and transform code to reflect that style.",
"version": "1.2.0",
"homepage": "https://github.com/bboyle/grunt-codepainter",
"author": {
"name": "Ben Boyle",
"email": "benjamins.boyle@gmail.com",
"url": "http://ultimate.benboyle.id.au"
},
"contributors": [
{
"name": "Daniel Zimmermann",
"url": "https://github.com/dlukez"
},
{
"name": "Jeremy Kahn",
"url": "https://github.com/jeremyckahn"
}
],
"repository": {
"type": "git",
"url": "git://github.com/bboyle/grunt-codepainter.git"
},
"bugs": {
"url": "https://github.com/bboyle/grunt-codepainter/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bboyle/grunt-codepainter/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.10.6"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.4.1"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"codepainter",
"prettify",
"prettifier",
"beautify",
"beautifier",
"idiomatic",
"idiomaticjs"
],
"dependencies": {
"codepainter": "~0.4.4"
}
}