-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 919 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
{
"name": "output-file-sync",
"version": "2.0.1",
"description": "Synchronously write a file and create its ancestor directories if needed",
"repository": "shinnn/output-file-sync",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"pretest": "eslint --fix --format=codeframe index.js test.js",
"test": "nyc --reporter=html --reporter=text node test.js"
},
"license": "ISC",
"files": [
"index.js"
],
"keywords": [
"fs",
"write",
"sync",
"synchronous",
"output",
"create",
"file",
"mkdir",
"mkdirp"
],
"dependencies": {
"graceful-fs": "^4.1.11",
"is-plain-obj": "^1.1.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"@shinnn/eslint-config-node": "^5.0.0",
"eslint": "^4.17.0",
"get-mode": "^1.0.1",
"nyc": "^11.4.1",
"read-utf8-file": "^2.0.0",
"rmfr": "^2.0.0-3",
"tape": "^4.8.0"
},
"eslintConfig": {
"extends": "@shinnn/node"
}
}