-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1012 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
39
40
41
42
43
44
45
46
47
{
"name": "coffee-fmt",
"version": "0.12.0",
"description": "a `gofmt` inspired Coffeescript formatter/beautifier.",
"author": "Steven R. Terpe <[email protected]> (https://github.com/sterpe)",
"main": "./Coffeescript.js",
"bin": {
"coffee-fmt": "./bin/cmd.js"
},
"scripts": {
"test": "tape ./test/tape/*"
},
"dependencies": {
"immutable": "^3.7.2",
"lodash": "^3.8.0",
"minimist": "^1.1.1",
"sprintf-js": "^1.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sterpe/coffee-fmt.git"
},
"keywords": [
"coffee",
"coffeescript",
"fmt",
"gofmt",
"format",
"formatter",
"beautify",
"beautifier",
"coffee-beautify",
"autoformat"
],
"bugs": {
"url": "https://github.com/sterpe/coffee-fmt/issues"
},
"license": "MIT",
"homepage": "https://github.com/sterpe/coffee-fmt",
"directories": {
"test": "test"
},
"devDependencies": {
"jest-cli": "^0.4.19",
"tape": "^4.2.0"
}
}