-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "fildes",
"version": "3.2.1",
"description": "promises fs and takes care about fs.open",
"main": "lib/main.js",
"scripts": {
"pretest": "npm run clean",
"precoverage": "npm run clean",
"clean": "rimraf ./test/data",
"test": "tape lib/**/test.js | tap-spec",
"coverage": "nyc --reporter=lcov --reporter=text tape lib/**/test.js",
"codecov": "npm run coverage && codecov",
"prettier": "prettier --single-quote --write \"{lib,test,examples}/**/*.js\"",
"lint": "eslint .",
"lint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "git://github.com/thisconnect/fildes.git"
},
"keywords": [
"promise",
"fildes",
"file",
"fd",
"fs",
"filesystem",
"mkdir",
"rm",
"access",
"exists",
"remove",
"delete",
"write",
"read",
"create"
],
"author": "Enrique Erne",
"license": "MIT",
"bugs": {
"url": "https://github.com/thisconnect/fildes/issues"
},
"homepage": "https://github.com/thisconnect/fildes#readme",
"dependencies": {
"del": "^6.0.0",
"make-dir": "^3.0.0"
},
"devDependencies": {
"codecov": "^3.5.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.2.1",
"nyc": "^15.0.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
}
}