-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 989 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
47
48
{
"name": "write-file-atomically",
"version": "2.0.0",
"description": "Promisified version of write-file-atomic",
"repository": "shinnn/write-file-atomically",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"pretest": "eslint --fix --format=codeframe .",
"test": "nyc --reporter=html --reporter=text node test.js"
},
"license": "ISC",
"files": [
"index.js"
],
"keywords": [
"write",
"output",
"create",
"fs",
"file",
"atomic",
"atomically",
"files",
"async",
"asynchronous",
"asynchronously",
"promise",
"then"
],
"dependencies": {
"file-uri-to-path": "^1.0.0",
"inspect-with-kind": "^1.0.4",
"is-plain-obj": "^1.1.0",
"write-file-atomic": "^2.3.0"
},
"devDependencies": {
"@shinnn/eslint-config-node": "^5.0.0",
"eslint": "^4.18.1",
"file-url": "^2.0.2",
"graceful-fs": "^4.1.11",
"nyc": "^11.5.0",
"rmfr": "^2.0.0-3",
"tape": "^4.9.0"
},
"eslintConfig": {
"extends": "@shinnn/node"
}
}