-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
38 lines (38 loc) · 906 Bytes
/
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
{
"name": "beautify-with-words",
"version": "0.2.0",
"description": "Beautify javascript with unique \"long-ish words\" for variable names.",
"keywords": [
"beautifier",
"beautify",
"formatter",
"pretty"
],
"homepage": "https://github.com/zertosh/beautify-with-words",
"main": "./beautify-with-words.js",
"bin": {
"beautify-with-words": "bin/beautify-with-words"
},
"author": "Andres Suarez <zertosh@gmail.com>",
"bugs": "https://github.com/zertosh/beautify-with-words/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/zertosh/beautify-with-words.git"
},
"dependencies": {
"uglify-js": "~2.4.11",
"phonetic": "~0.1.0",
"optimist": "~0.6.0"
},
"devDependencies": {
"mocha": "~1.17.1",
"should": "~3.1.2"
},
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=0.8.0"
}
}