-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
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
{
"name": "beautifier",
"description": "The JavaScript, html, and css beautifier",
"homepage": "https://github.com/einars/js-beautify",
"keywords": [
"beautify"
],
"version": "0.1.9",
"author" : "Rickey Visinski",
"contributors": [
"Einar Lielmanis <einar@jsbeautifier.org>",
"Nochum Sossonko <nsossonko@hotmail.com>",
"Harutyun Amirjanyan <amirjanyan@gmail.com>",
"Anders Conbere <aconbere@gmail.com>"
],
"bin": {
"beautifier": "./bin/beautifier.js"
},
"main": "./lib/beautify.js",
"dependencies": {
"nopt": "~1.0.0"
},
"engines": {
"node": ">=0.4.12"
},
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "git://github.com/rickeyski/node-beautifier.git"
},
"bugs": {
"url": "https://github.com/rickeyski/node-beautifier/issues"
},
"licenses": [
{
"type": "Modified MIT / BSD",
"url": "https://github.com/rickeyski/node-beautifier/blob/master/LICENSE"
}
]
}