-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.53 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "fs-meta",
"version": "0.2.1",
"description": "A replacement for the native fs module that does a little more",
"main": "index.js",
"scripts": {
"compile": "rm -rf ./lib && ./node_modules/.bin/babel src --out-dir lib",
"test": "./node_modules/.bin/mocha",
"spec":"./node_modules/.bin/mocha ./test/tests/index.js -R markdown | sed \"s/_src2\\['default'\\]/fsm/\" | sed \"s/(0, _srcApi.apiFactory)/apiFactory/\" > spec.md"
},
"keywords": [
"fs",
"file",
"file system",
"copy",
"directory",
"extra",
"mkdirp",
"mkdir",
"mkdirs",
"recursive",
"json",
"read",
"write",
"extra",
"delete",
"remove",
"touch",
"create",
"text",
"output",
"move"
],
"author": "xananax@yelostudio.com",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"mocha": "^2.3.3",
"should": "^7.1.0"
},
"dependencies": {
"bluebird": "^2.10.2",
"fs-extra": "^0.24.0",
"mime": "^1.3.4",
"mkdirp": "^0.5.1",
"readdirp": "^2.0.0"
},
"optionalDependencies":{
"apido": "*",
"exif-parser": "^0.1.9",
"filesize": "^3.1.3",
"id3js": "^1.1.3",
"image-size": "^0.3.5",
"ini": "^1.3.4",
"js-yaml": "^3.4.3",
"xml2js": "^0.4.12"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xananax/fs-meta.git"
},
"bugs": {
"url": "https://github.com/Xananax/fs-meta/issues"
},
"homepage": "https://github.com/Xananax/fs-meta#readme"
}