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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
{
"_from": "lowdb@^0.14.0",
"_id": "[email protected]",
"_inBundle": false,
"_integrity": "sha1-zOTmr/6GfGzUsZazgtM1m00577U=",
"_location": "/lowdb",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lowdb@^0.14.0",
"name": "lowdb",
"escapedName": "lowdb",
"rawSpec": "^0.14.0",
"saveSpec": null,
"fetchSpec": "^0.14.0"
},
"_requiredBy": [
"/node-file-cache"
],
"_resolved": "https://registry.npmjs.org/lowdb/-/lowdb-0.14.0.tgz",
"_shasum": "cce4e6affe867c6cd4b196b382d3359b4d39efb5",
"_spec": "lowdb@^0.14.0",
"_where": "E:\\Documents\\GitHub\\s5nical\\node_modules\\node-file-cache",
"author": {
"name": "Typicode",
"email": "[email protected]"
},
"browser": {
"./lib/index.node.js": "./lib/index.browser.js"
},
"bugs": {
"url": "https://github.com/typicode/lowdb/issues"
},
"bundleDependencies": false,
"dependencies": {
"graceful-fs": "^4.1.3",
"is-promise": "^2.1.0",
"json-parse-helpfulerror": "^1.0.3",
"lodash": "4",
"steno": "^0.4.1"
},
"deprecated": false,
"description": "JSON database for Node and the browser powered by lodash API",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-3": "^6.3.13",
"babel-register": "^6.9.0",
"browserify": "^13.0.1",
"husky": "^0.11.9",
"lodash": "^4.12.0",
"sinon": "^1.17.2",
"standard": "^8.5.0",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"tempfile": "^1.1.1",
"uglify-js": "^2.6.2",
"underscore-db": "^0.12.0",
"webpack": "^1.12.13"
},
"engines": {
"node": ">= 0.12"
},
"homepage": "https://github.com/typicode/lowdb",
"keywords": [
"flat",
"file",
"local",
"database",
"storage",
"JSON",
"lo-dash",
"lodash",
"underscore",
"localStorage",
"embed",
"embeddable"
],
"license": "MIT",
"main": "./lib/index.node.js",
"name": "lowdb",
"repository": {
"type": "git",
"url": "git://github.com/typicode/lowdb.git"
},
"scripts": {
"babel": "babel src --out-dir lib",
"browserify": "mkdir -p dist && browserify lib/index.browser.js -o dist/lowdb.js --standalone low",
"build": "npm run babel && npm run browserify && npm run uglify",
"precommit": "npm test",
"prepublish": "npm run build",
"test": "tape -r babel-register -r babel-polyfill test/*.js | tap-spec",
"uglify": "uglifyjs dist/lowdb.js -o dist/lowdb.min.js"
},
"standard": {
"parser": "babel-eslint"
},
"typescript": {
"definition": "./lowdb.d.ts"
},
"typings": "./lowdb.d.ts",
"version": "0.14.0"
}
|