-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 959 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 959 Bytes
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
{
"name": "dir2text",
"version": "0.1.1",
"description": "export directory structure to text",
"author": "knightli@foxmail.com",
"repository": {
"type": "git",
"url": "https://github.com/knightli/dir2text.git"
},
"bugs": {
"url": "https://github.com/knightli/dir2text/issues"
},
"main": "lib/index.js",
"bin": {
"dir2text": "bin/dir2text"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"async": "^0.9.0",
"hidefile": "^0.2.0",
"optimist": "^0.6.1"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-jscs-with-reporter": "^1.4.0",
"gulp-jscs-html-reporter": "^0.1.0",
"gulp-jshint": "^1.9.4",
"gulp-jshint-html-reporter": "^0.1.2",
"jest-cli": "^0.4.0",
"jshint-html-reporter": "^0.2.3",
"jshint-stylish": "^1.0.1",
"lodash": "^3.5.0"
},
"jest": {
"modulePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
},
"license": "MIT"
}