1 | {
|
2 | "name": "write",
|
3 | "description": "Write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Thin wrapper around node's native fs methods.",
|
4 | "version": "2.0.0",
|
5 | "homepage": "https://github.com/jonschlinkert/write",
|
6 | "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
7 | "contributors": [
|
8 | "Charlike Mike Reagent (https://i.am.charlike.online)",
|
9 | "Jon Schlinkert (http://twitter.com/jonschlinkert)"
|
10 | ],
|
11 | "repository": "jonschlinkert/write",
|
12 | "bugs": {
|
13 | "url": "https://github.com/jonschlinkert/write/issues"
|
14 | },
|
15 | "license": "MIT",
|
16 | "files": [
|
17 | "index.js"
|
18 | ],
|
19 | "main": "index.js",
|
20 | "engines": {
|
21 | "node": ">=10"
|
22 | },
|
23 | "scripts": {
|
24 | "test": "mocha"
|
25 | },
|
26 | "dependencies": {
|
27 | "add-filename-increment": "^1.0.0"
|
28 | },
|
29 | "devDependencies": {
|
30 | "gulp-format-md": "^2.0.0",
|
31 | "mocha": "^6.2.0",
|
32 | "rimraf": "^2.6.3"
|
33 | },
|
34 | "keywords": [
|
35 | "async",
|
36 | "file path",
|
37 | "file system",
|
38 | "file",
|
39 | "filepath",
|
40 | "files",
|
41 | "filesystem",
|
42 | "folder",
|
43 | "fs",
|
44 | "fs.writeFile",
|
45 | "fs.writeFileSync",
|
46 | "path",
|
47 | "promise",
|
48 | "streams",
|
49 | "write file",
|
50 | "write-file",
|
51 | "writefile",
|
52 | "write"
|
53 | ],
|
54 | "verb": {
|
55 | "run": true,
|
56 | "toc": false,
|
57 | "layout": "default",
|
58 | "tasks": [
|
59 | "readme"
|
60 | ],
|
61 | "plugins": [
|
62 | "gulp-format-md"
|
63 | ],
|
64 | "related": {
|
65 | "list": [
|
66 | "add-filename-increment",
|
67 | "strip-filename-increment",
|
68 | "delete",
|
69 | "read-data",
|
70 | "read-yaml",
|
71 | "write-data",
|
72 | "write-json",
|
73 | "write-yaml"
|
74 | ]
|
75 | },
|
76 | "reflinks": [
|
77 | "verb"
|
78 | ],
|
79 | "lint": {
|
80 | "reflinks": true
|
81 | }
|
82 | }
|
83 | }
|