forked from sindresorhus/configstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1023 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": "configstore-plain",
"version": "1.1.0",
"description": "Easily load and save config without having to think about where and how. Based on https://github.com/yeoman/configstore with additions for storing plain keys containing periods.",
"keywords": [
"conf",
"config",
"configuration",
"settings",
"store",
"editable",
"json",
"data",
"persist",
"persistent",
"save"
],
"author": {
"name": "David Lomas",
"email": "[email protected]"
},
"repository": "dsl101/configstore-plain",
"engines": {
"node": ">=0.10.0"
},
"license": "BSD-2-Clause",
"dependencies": {
"dot-prop": "^2.3.0",
"graceful-fs": "^4.1.2",
"mkdirp": "^0.5.0",
"object-assign": "^4.0.1",
"os-tmpdir": "^1.0.0",
"osenv": "^0.1.0",
"uuid": "^2.0.1",
"write-file-atomic": "^1.1.2",
"xdg-basedir": "^2.0.0"
},
"devDependencies": {
"mocha": "*",
"path-exists": "^2.0.0",
"xo": "*"
},
"files": [
"index.js"
]
}