-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 847 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
{
"name": "dachshund",
"version": "1.0.4",
"description": "Convert files with underscores to dashes (and vice versa).",
"main": "index.js",
"scripts": {
"test": "mocha test/"
},
"keywords": [
"utilities",
"dashes",
"underscores"
],
"bin": {
"dunder": "bin/dunder",
"udash": "bin/udash"
},
"author": "George Lee",
"repository": {
"type": "git",
"url": "https://github.com/keokilee/dachshund.git"
},
"bugs": {
"url": "https://github.com/keokilee/dachshund/issues"
},
"homepage": {
"url": "https://github.com/keokilee/dachshund"
},
"license": "ISC",
"dependencies": {
"bluebird": "^3.0.5",
"commander": "^2.9.0"
},
"devDependencies": {
"expect": "^1.12.2",
"mkdirp": "^0.5.1",
"mocha": "^2.3.3",
"rimraf": "^2.5.0",
"touch": "^1.0.0"
}
}