vaderjs 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/create-vader-app/example_proj/dist/vaderjs/index.js +5 -0
- package/create-vader-app/example_proj/dist/vaderjs/vader-min.js +1115 -0
- package/create-vader-app/example_proj/dist/vaderjs/vaderRouter-min.js +1 -0
- package/create-vader-app/example_proj/dist/vaderjs/worker.js +327 -0
- package/create-vader-app/example_proj/index.html +20 -0
- package/create-vader-app/example_proj/readme.md +2 -0
- package/create-vader-app/example_proj/src/pages/Index.js +13 -0
- package/create-vader-app/example_proj/src/views/app.html +16 -0
- package/create-vader-app/index.js +20 -0
- package/create-vader-app/node_modules/.package-lock.json +350 -0
- package/create-vader-app/node_modules/chalk/license +9 -0
- package/create-vader-app/node_modules/chalk/package.json +83 -0
- package/create-vader-app/node_modules/chalk/readme.md +325 -0
- package/create-vader-app/node_modules/chalk/source/index.d.ts +320 -0
- package/create-vader-app/node_modules/chalk/source/index.js +225 -0
- package/create-vader-app/node_modules/chalk/source/utilities.js +33 -0
- package/create-vader-app/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
- package/create-vader-app/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- package/create-vader-app/node_modules/commander/LICENSE +22 -0
- package/create-vader-app/node_modules/commander/Readme.md +1146 -0
- package/create-vader-app/node_modules/commander/esm.mjs +16 -0
- package/create-vader-app/node_modules/commander/index.js +27 -0
- package/create-vader-app/node_modules/commander/lib/argument.js +147 -0
- package/create-vader-app/node_modules/commander/lib/command.js +2196 -0
- package/create-vader-app/node_modules/commander/lib/error.js +45 -0
- package/create-vader-app/node_modules/commander/lib/help.js +464 -0
- package/create-vader-app/node_modules/commander/lib/option.js +331 -0
- package/create-vader-app/node_modules/commander/lib/suggestSimilar.js +100 -0
- package/create-vader-app/node_modules/commander/package-support.json +16 -0
- package/create-vader-app/node_modules/commander/package.json +90 -0
- package/create-vader-app/node_modules/commander/typings/esm.d.mts +3 -0
- package/create-vader-app/node_modules/commander/typings/index.d.ts +889 -0
- package/create-vader-app/node_modules/fs-extra/LICENSE +15 -0
- package/create-vader-app/node_modules/fs-extra/README.md +292 -0
- package/create-vader-app/node_modules/fs-extra/lib/copy/copy-sync.js +161 -0
- package/create-vader-app/node_modules/fs-extra/lib/copy/copy.js +238 -0
- package/create-vader-app/node_modules/fs-extra/lib/copy/index.js +7 -0
- package/create-vader-app/node_modules/fs-extra/lib/empty/index.js +39 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/file.js +69 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/index.js +23 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/link.js +64 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/symlink-paths.js +99 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/symlink-type.js +31 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/symlink.js +82 -0
- package/create-vader-app/node_modules/fs-extra/lib/esm.mjs +68 -0
- package/create-vader-app/node_modules/fs-extra/lib/fs/index.js +140 -0
- package/create-vader-app/node_modules/fs-extra/lib/index.js +16 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/index.js +16 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/output-json.js +12 -0
- package/create-vader-app/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
- package/create-vader-app/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
- package/create-vader-app/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
- package/create-vader-app/node_modules/fs-extra/lib/move/index.js +7 -0
- package/create-vader-app/node_modules/fs-extra/lib/move/move-sync.js +55 -0
- package/create-vader-app/node_modules/fs-extra/lib/move/move.js +76 -0
- package/create-vader-app/node_modules/fs-extra/lib/output-file/index.js +40 -0
- package/create-vader-app/node_modules/fs-extra/lib/path-exists/index.js +12 -0
- package/create-vader-app/node_modules/fs-extra/lib/remove/index.js +17 -0
- package/create-vader-app/node_modules/fs-extra/lib/util/stat.js +154 -0
- package/create-vader-app/node_modules/fs-extra/lib/util/utimes.js +26 -0
- package/create-vader-app/node_modules/fs-extra/package.json +71 -0
- package/create-vader-app/node_modules/graceful-fs/LICENSE +15 -0
- package/create-vader-app/node_modules/graceful-fs/README.md +143 -0
- package/create-vader-app/node_modules/graceful-fs/clone.js +23 -0
- package/create-vader-app/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/create-vader-app/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/create-vader-app/node_modules/graceful-fs/package.json +53 -0
- package/create-vader-app/node_modules/graceful-fs/polyfills.js +355 -0
- package/create-vader-app/node_modules/inherits/LICENSE +16 -0
- package/create-vader-app/node_modules/inherits/README.md +42 -0
- package/create-vader-app/node_modules/inherits/inherits.js +7 -0
- package/create-vader-app/node_modules/inherits/inherits_browser.js +23 -0
- package/create-vader-app/node_modules/inherits/package.json +29 -0
- package/create-vader-app/node_modules/jsonfile/CHANGELOG.md +171 -0
- package/create-vader-app/node_modules/jsonfile/LICENSE +15 -0
- package/create-vader-app/node_modules/jsonfile/README.md +230 -0
- package/create-vader-app/node_modules/jsonfile/index.js +88 -0
- package/create-vader-app/node_modules/jsonfile/package.json +40 -0
- package/create-vader-app/node_modules/jsonfile/utils.js +14 -0
- package/create-vader-app/node_modules/path/LICENSE +18 -0
- package/create-vader-app/node_modules/path/README.md +15 -0
- package/create-vader-app/node_modules/path/package.json +24 -0
- package/create-vader-app/node_modules/path/path.js +628 -0
- package/create-vader-app/node_modules/process/.eslintrc +21 -0
- package/create-vader-app/node_modules/process/LICENSE +22 -0
- package/create-vader-app/node_modules/process/README.md +26 -0
- package/create-vader-app/node_modules/process/browser.js +184 -0
- package/create-vader-app/node_modules/process/index.js +2 -0
- package/create-vader-app/node_modules/process/package.json +27 -0
- package/create-vader-app/node_modules/process/test.js +199 -0
- package/create-vader-app/node_modules/universalify/LICENSE +20 -0
- package/create-vader-app/node_modules/universalify/README.md +76 -0
- package/create-vader-app/node_modules/universalify/index.js +24 -0
- package/create-vader-app/node_modules/universalify/package.json +34 -0
- package/create-vader-app/node_modules/util/LICENSE +18 -0
- package/create-vader-app/node_modules/util/README.md +15 -0
- package/create-vader-app/node_modules/util/package.json +35 -0
- package/create-vader-app/node_modules/util/support/isBuffer.js +3 -0
- package/create-vader-app/node_modules/util/support/isBufferBrowser.js +6 -0
- package/create-vader-app/node_modules/util/util.js +586 -0
- package/create-vader-app/package-lock.json +384 -0
- package/create-vader-app/package.json +18 -0
- package/package.json +1 -1
- package/vader-min.js +1 -1
- package/vader.js +4 -4
- package/worker-min.js +1 -1
- package/worker.js +49 -24
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
Node.js - jsonfile
|
|
2
|
+
================
|
|
3
|
+
|
|
4
|
+
Easily read/write JSON files in Node.js. _Note: this module cannot be used in the browser._
|
|
5
|
+
|
|
6
|
+
[](https://www.npmjs.org/package/jsonfile)
|
|
7
|
+
[](http://travis-ci.org/jprichardson/node-jsonfile)
|
|
8
|
+
[](https://ci.appveyor.com/project/jprichardson/node-jsonfile/branch/master)
|
|
9
|
+
|
|
10
|
+
<a href="https://github.com/feross/standard"><img src="https://cdn.rawgit.com/feross/standard/master/sticker.svg" alt="Standard JavaScript" width="100"></a>
|
|
11
|
+
|
|
12
|
+
Why?
|
|
13
|
+
----
|
|
14
|
+
|
|
15
|
+
Writing `JSON.stringify()` and then `fs.writeFile()` and `JSON.parse()` with `fs.readFile()` enclosed in `try/catch` blocks became annoying.
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
Installation
|
|
20
|
+
------------
|
|
21
|
+
|
|
22
|
+
npm install --save jsonfile
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
API
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
* [`readFile(filename, [options], callback)`](#readfilefilename-options-callback)
|
|
30
|
+
* [`readFileSync(filename, [options])`](#readfilesyncfilename-options)
|
|
31
|
+
* [`writeFile(filename, obj, [options], callback)`](#writefilefilename-obj-options-callback)
|
|
32
|
+
* [`writeFileSync(filename, obj, [options])`](#writefilesyncfilename-obj-options)
|
|
33
|
+
|
|
34
|
+
----
|
|
35
|
+
|
|
36
|
+
### readFile(filename, [options], callback)
|
|
37
|
+
|
|
38
|
+
`options` (`object`, default `undefined`): Pass in any [`fs.readFile`](https://nodejs.org/api/fs.html#fs_fs_readfile_path_options_callback) options or set `reviver` for a [JSON reviver](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse).
|
|
39
|
+
- `throws` (`boolean`, default: `true`). If `JSON.parse` throws an error, pass this error to the callback.
|
|
40
|
+
If `false`, returns `null` for the object.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
```js
|
|
44
|
+
const jsonfile = require('jsonfile')
|
|
45
|
+
const file = '/tmp/data.json'
|
|
46
|
+
jsonfile.readFile(file, function (err, obj) {
|
|
47
|
+
if (err) console.error(err)
|
|
48
|
+
console.dir(obj)
|
|
49
|
+
})
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
You can also use this method with promises. The `readFile` method will return a promise if you do not pass a callback function.
|
|
53
|
+
|
|
54
|
+
```js
|
|
55
|
+
const jsonfile = require('jsonfile')
|
|
56
|
+
const file = '/tmp/data.json'
|
|
57
|
+
jsonfile.readFile(file)
|
|
58
|
+
.then(obj => console.dir(obj))
|
|
59
|
+
.catch(error => console.error(error))
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
----
|
|
63
|
+
|
|
64
|
+
### readFileSync(filename, [options])
|
|
65
|
+
|
|
66
|
+
`options` (`object`, default `undefined`): Pass in any [`fs.readFileSync`](https://nodejs.org/api/fs.html#fs_fs_readfilesync_path_options) options or set `reviver` for a [JSON reviver](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse).
|
|
67
|
+
- `throws` (`boolean`, default: `true`). If an error is encountered reading or parsing the file, throw the error. If `false`, returns `null` for the object.
|
|
68
|
+
|
|
69
|
+
```js
|
|
70
|
+
const jsonfile = require('jsonfile')
|
|
71
|
+
const file = '/tmp/data.json'
|
|
72
|
+
|
|
73
|
+
console.dir(jsonfile.readFileSync(file))
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
----
|
|
77
|
+
|
|
78
|
+
### writeFile(filename, obj, [options], callback)
|
|
79
|
+
|
|
80
|
+
`options`: Pass in any [`fs.writeFile`](https://nodejs.org/api/fs.html#fs_fs_writefile_file_data_options_callback) options or set `replacer` for a [JSON replacer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify). Can also pass in `spaces`, or override `EOL` string or set `finalEOL` flag as `false` to not save the file with `EOL` at the end.
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
```js
|
|
84
|
+
const jsonfile = require('jsonfile')
|
|
85
|
+
|
|
86
|
+
const file = '/tmp/data.json'
|
|
87
|
+
const obj = { name: 'JP' }
|
|
88
|
+
|
|
89
|
+
jsonfile.writeFile(file, obj, function (err) {
|
|
90
|
+
if (err) console.error(err)
|
|
91
|
+
})
|
|
92
|
+
```
|
|
93
|
+
Or use with promises as follows:
|
|
94
|
+
|
|
95
|
+
```js
|
|
96
|
+
const jsonfile = require('jsonfile')
|
|
97
|
+
|
|
98
|
+
const file = '/tmp/data.json'
|
|
99
|
+
const obj = { name: 'JP' }
|
|
100
|
+
|
|
101
|
+
jsonfile.writeFile(file, obj)
|
|
102
|
+
.then(res => {
|
|
103
|
+
console.log('Write complete')
|
|
104
|
+
})
|
|
105
|
+
.catch(error => console.error(error))
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
**formatting with spaces:**
|
|
110
|
+
|
|
111
|
+
```js
|
|
112
|
+
const jsonfile = require('jsonfile')
|
|
113
|
+
|
|
114
|
+
const file = '/tmp/data.json'
|
|
115
|
+
const obj = { name: 'JP' }
|
|
116
|
+
|
|
117
|
+
jsonfile.writeFile(file, obj, { spaces: 2 }, function (err) {
|
|
118
|
+
if (err) console.error(err)
|
|
119
|
+
})
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
**overriding EOL:**
|
|
123
|
+
|
|
124
|
+
```js
|
|
125
|
+
const jsonfile = require('jsonfile')
|
|
126
|
+
|
|
127
|
+
const file = '/tmp/data.json'
|
|
128
|
+
const obj = { name: 'JP' }
|
|
129
|
+
|
|
130
|
+
jsonfile.writeFile(file, obj, { spaces: 2, EOL: '\r\n' }, function (err) {
|
|
131
|
+
if (err) console.error(err)
|
|
132
|
+
})
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
**disabling the EOL at the end of file:**
|
|
137
|
+
|
|
138
|
+
```js
|
|
139
|
+
const jsonfile = require('jsonfile')
|
|
140
|
+
|
|
141
|
+
const file = '/tmp/data.json'
|
|
142
|
+
const obj = { name: 'JP' }
|
|
143
|
+
|
|
144
|
+
jsonfile.writeFile(file, obj, { spaces: 2, finalEOL: false }, function (err) {
|
|
145
|
+
if (err) console.log(err)
|
|
146
|
+
})
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
**appending to an existing JSON file:**
|
|
150
|
+
|
|
151
|
+
You can use `fs.writeFile` option `{ flag: 'a' }` to achieve this.
|
|
152
|
+
|
|
153
|
+
```js
|
|
154
|
+
const jsonfile = require('jsonfile')
|
|
155
|
+
|
|
156
|
+
const file = '/tmp/mayAlreadyExistedData.json'
|
|
157
|
+
const obj = { name: 'JP' }
|
|
158
|
+
|
|
159
|
+
jsonfile.writeFile(file, obj, { flag: 'a' }, function (err) {
|
|
160
|
+
if (err) console.error(err)
|
|
161
|
+
})
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
----
|
|
165
|
+
|
|
166
|
+
### writeFileSync(filename, obj, [options])
|
|
167
|
+
|
|
168
|
+
`options`: Pass in any [`fs.writeFileSync`](https://nodejs.org/api/fs.html#fs_fs_writefilesync_file_data_options) options or set `replacer` for a [JSON replacer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify). Can also pass in `spaces`, or override `EOL` string or set `finalEOL` flag as `false` to not save the file with `EOL` at the end.
|
|
169
|
+
|
|
170
|
+
```js
|
|
171
|
+
const jsonfile = require('jsonfile')
|
|
172
|
+
|
|
173
|
+
const file = '/tmp/data.json'
|
|
174
|
+
const obj = { name: 'JP' }
|
|
175
|
+
|
|
176
|
+
jsonfile.writeFileSync(file, obj)
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
**formatting with spaces:**
|
|
180
|
+
|
|
181
|
+
```js
|
|
182
|
+
const jsonfile = require('jsonfile')
|
|
183
|
+
|
|
184
|
+
const file = '/tmp/data.json'
|
|
185
|
+
const obj = { name: 'JP' }
|
|
186
|
+
|
|
187
|
+
jsonfile.writeFileSync(file, obj, { spaces: 2 })
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
**overriding EOL:**
|
|
191
|
+
|
|
192
|
+
```js
|
|
193
|
+
const jsonfile = require('jsonfile')
|
|
194
|
+
|
|
195
|
+
const file = '/tmp/data.json'
|
|
196
|
+
const obj = { name: 'JP' }
|
|
197
|
+
|
|
198
|
+
jsonfile.writeFileSync(file, obj, { spaces: 2, EOL: '\r\n' })
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
**disabling the EOL at the end of file:**
|
|
202
|
+
|
|
203
|
+
```js
|
|
204
|
+
const jsonfile = require('jsonfile')
|
|
205
|
+
|
|
206
|
+
const file = '/tmp/data.json'
|
|
207
|
+
const obj = { name: 'JP' }
|
|
208
|
+
|
|
209
|
+
jsonfile.writeFileSync(file, obj, { spaces: 2, finalEOL: false })
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
**appending to an existing JSON file:**
|
|
213
|
+
|
|
214
|
+
You can use `fs.writeFileSync` option `{ flag: 'a' }` to achieve this.
|
|
215
|
+
|
|
216
|
+
```js
|
|
217
|
+
const jsonfile = require('jsonfile')
|
|
218
|
+
|
|
219
|
+
const file = '/tmp/mayAlreadyExistedData.json'
|
|
220
|
+
const obj = { name: 'JP' }
|
|
221
|
+
|
|
222
|
+
jsonfile.writeFileSync(file, obj, { flag: 'a' })
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
License
|
|
226
|
+
-------
|
|
227
|
+
|
|
228
|
+
(MIT License)
|
|
229
|
+
|
|
230
|
+
Copyright 2012-2016, JP Richardson <jprichardson@gmail.com>
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
let _fs
|
|
2
|
+
try {
|
|
3
|
+
_fs = require('graceful-fs')
|
|
4
|
+
} catch (_) {
|
|
5
|
+
_fs = require('fs')
|
|
6
|
+
}
|
|
7
|
+
const universalify = require('universalify')
|
|
8
|
+
const { stringify, stripBom } = require('./utils')
|
|
9
|
+
|
|
10
|
+
async function _readFile (file, options = {}) {
|
|
11
|
+
if (typeof options === 'string') {
|
|
12
|
+
options = { encoding: options }
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const fs = options.fs || _fs
|
|
16
|
+
|
|
17
|
+
const shouldThrow = 'throws' in options ? options.throws : true
|
|
18
|
+
|
|
19
|
+
let data = await universalify.fromCallback(fs.readFile)(file, options)
|
|
20
|
+
|
|
21
|
+
data = stripBom(data)
|
|
22
|
+
|
|
23
|
+
let obj
|
|
24
|
+
try {
|
|
25
|
+
obj = JSON.parse(data, options ? options.reviver : null)
|
|
26
|
+
} catch (err) {
|
|
27
|
+
if (shouldThrow) {
|
|
28
|
+
err.message = `${file}: ${err.message}`
|
|
29
|
+
throw err
|
|
30
|
+
} else {
|
|
31
|
+
return null
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return obj
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const readFile = universalify.fromPromise(_readFile)
|
|
39
|
+
|
|
40
|
+
function readFileSync (file, options = {}) {
|
|
41
|
+
if (typeof options === 'string') {
|
|
42
|
+
options = { encoding: options }
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const fs = options.fs || _fs
|
|
46
|
+
|
|
47
|
+
const shouldThrow = 'throws' in options ? options.throws : true
|
|
48
|
+
|
|
49
|
+
try {
|
|
50
|
+
let content = fs.readFileSync(file, options)
|
|
51
|
+
content = stripBom(content)
|
|
52
|
+
return JSON.parse(content, options.reviver)
|
|
53
|
+
} catch (err) {
|
|
54
|
+
if (shouldThrow) {
|
|
55
|
+
err.message = `${file}: ${err.message}`
|
|
56
|
+
throw err
|
|
57
|
+
} else {
|
|
58
|
+
return null
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
async function _writeFile (file, obj, options = {}) {
|
|
64
|
+
const fs = options.fs || _fs
|
|
65
|
+
|
|
66
|
+
const str = stringify(obj, options)
|
|
67
|
+
|
|
68
|
+
await universalify.fromCallback(fs.writeFile)(file, str, options)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
const writeFile = universalify.fromPromise(_writeFile)
|
|
72
|
+
|
|
73
|
+
function writeFileSync (file, obj, options = {}) {
|
|
74
|
+
const fs = options.fs || _fs
|
|
75
|
+
|
|
76
|
+
const str = stringify(obj, options)
|
|
77
|
+
// not sure if fs.writeFileSync returns anything, but just in case
|
|
78
|
+
return fs.writeFileSync(file, str, options)
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
const jsonfile = {
|
|
82
|
+
readFile,
|
|
83
|
+
readFileSync,
|
|
84
|
+
writeFile,
|
|
85
|
+
writeFileSync
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
module.exports = jsonfile
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jsonfile",
|
|
3
|
+
"version": "6.1.0",
|
|
4
|
+
"description": "Easily read/write JSON files.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git@github.com:jprichardson/node-jsonfile.git"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"read",
|
|
11
|
+
"write",
|
|
12
|
+
"file",
|
|
13
|
+
"json",
|
|
14
|
+
"fs",
|
|
15
|
+
"fs-extra"
|
|
16
|
+
],
|
|
17
|
+
"author": "JP Richardson <jprichardson@gmail.com>",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"universalify": "^2.0.0"
|
|
21
|
+
},
|
|
22
|
+
"optionalDependencies": {
|
|
23
|
+
"graceful-fs": "^4.1.6"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"mocha": "^8.2.0",
|
|
27
|
+
"rimraf": "^2.4.0",
|
|
28
|
+
"standard": "^16.0.1"
|
|
29
|
+
},
|
|
30
|
+
"main": "index.js",
|
|
31
|
+
"files": [
|
|
32
|
+
"index.js",
|
|
33
|
+
"utils.js"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"lint": "standard",
|
|
37
|
+
"test": "npm run lint && npm run unit",
|
|
38
|
+
"unit": "mocha"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
function stringify (obj, { EOL = '\n', finalEOL = true, replacer = null, spaces } = {}) {
|
|
2
|
+
const EOF = finalEOL ? EOL : ''
|
|
3
|
+
const str = JSON.stringify(obj, replacer, spaces)
|
|
4
|
+
|
|
5
|
+
return str.replace(/\n/g, EOL) + EOF
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
function stripBom (content) {
|
|
9
|
+
// we do this because JSON.parse would convert it to a utf8 string if encoding wasn't specified
|
|
10
|
+
if (Buffer.isBuffer(content)) content = content.toString('utf8')
|
|
11
|
+
return content.replace(/^\uFEFF/, '')
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
module.exports = { stringify, stripBom }
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
2
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3
|
+
of this software and associated documentation files (the "Software"), to
|
|
4
|
+
deal in the Software without restriction, including without limitation the
|
|
5
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
6
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
|
7
|
+
furnished to do so, subject to the following conditions:
|
|
8
|
+
|
|
9
|
+
The above copyright notice and this permission notice shall be included in
|
|
10
|
+
all copies or substantial portions of the Software.
|
|
11
|
+
|
|
12
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
14
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
15
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
16
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
17
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
18
|
+
IN THE SOFTWARE.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": {
|
|
3
|
+
"name": "Joyent",
|
|
4
|
+
"url": "http://www.joyent.com"
|
|
5
|
+
},
|
|
6
|
+
"name": "path",
|
|
7
|
+
"description": "Node.JS path module",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"ender",
|
|
10
|
+
"path"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"version": "0.12.7",
|
|
14
|
+
"homepage": "http://nodejs.org/docs/latest/api/path.html",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git://github.com/jinder/path.git"
|
|
18
|
+
},
|
|
19
|
+
"main": "./path.js",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"process": "^0.11.1",
|
|
22
|
+
"util": "^0.10.3"
|
|
23
|
+
}
|
|
24
|
+
}
|