-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "shutil.js",
"version": "0.3.0",
"description": "A Lightweight File Operating Library",
"main": "index.js",
"scripts": {
"test": "mocha ./test/all.js",
"coverall": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moriyalb/shutil.js.git"
},
"keywords": [
"shutil",
"node.js",
"file",
"system",
"directory"
],
"author": "moriyalb",
"license": "MIT",
"bugs": {
"url": "https://github.com/moriyalb/shutil.js/issues"
},
"homepage": "https://github.com/moriyalb/shutil.js#readme",
"devDependencies": {
"blanket": "^1.2.3",
"coveralls": "^3.0.3",
"install": "^0.12.2",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.2.3"
},
"dependencies": {
"lodash": "^4.17.11"
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": [
"node_modules"
]
}
}
}