-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
89 lines (89 loc) · 1.63 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "data-store",
"description": "Easily persist and load config data. No dependencies.",
"version": "4.1.0",
"homepage": "https://github.com/jonschlinkert/data-store",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jamen Marz (jamenmarz.com)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Olsten Larck (https://i.am.charlike.online)"
],
"repository": "jonschlinkert/data-store",
"bugs": {
"url": "https://github.com/jonschlinkert/data-store/issues"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"utils.js"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"get-value": "^3.0.1",
"set-value": "^3.0.1"
},
"devDependencies": {
"delete": "^1.1.0",
"gulp-format-md": "^2.0.0",
"ini": "^1.3.5",
"mocha": "^6.2.0"
},
"keywords": [
"app",
"cache",
"config",
"config-store",
"configstore",
"data",
"defaults",
"get",
"has",
"has-own",
"hash",
"json",
"kv",
"key-value",
"local",
"object",
"options",
"own",
"persist",
"save",
"set",
"storage",
"store",
"union",
"write"
],
"verb": {
"run": true,
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"get-value",
"has-value",
"set-value",
"write"
]
},
"lint": {
"reflinks": true
}
}
}