-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 899 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
42
43
44
45
46
{
"name": "prepare-write",
"version": "2.0.0-2",
"description": "Prepare for writing a file to the given path – create ancestor directories and verify no directory exists in the path",
"author": "Watanabe Shinnosuke (https://github.com/shinnn)",
"repository": "shinnn/prepare-write",
"license": "ISC",
"scripts": {
"pretest": "eslint .",
"test": "nyc node test.js"
},
"files": [
"index.js"
],
"keywords": [
"prepare",
"write",
"ensure",
"mkdir",
"mkdirp",
"path",
"file",
"keep",
"reserve",
"promise",
"async",
"asynchronous"
],
"dependencies": {
"inspect-with-kind": "^1.0.5"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.7.1",
"eslint": "^5.6.0",
"nyc": "^13.0.1",
"nyc-config-common": "^1.0.0",
"rmfr": "^2.0.0",
"tape": "^4.9.1"
},
"eslintConfig": {
"extends": "@shinnn"
},
"nyc": {
"extends": "nyc-config-common"
}
}