package.json
2.87 KB
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
108
{
"_from": "lowdb@^1.0.0",
"_id": "lowdb@1.0.0",
"_inBundle": false,
"_integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==",
"_location": "/lowdb",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lowdb@^1.0.0",
"name": "lowdb",
"escapedName": "lowdb",
"rawSpec": "^1.0.0",
"saveSpec": null,
"fetchSpec": "^1.0.0"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz",
"_shasum": "5243be6b22786ccce30e50c9a33eac36b20c8064",
"_spec": "lowdb@^1.0.0",
"_where": "C:\\Users\\kyjoon\\Desktop\\거위\\Open_Source_project",
"author": {
"name": "Typicode",
"email": "typicode@gmail.com"
},
"bugs": {
"url": "https://github.com/typicode/lowdb/issues"
},
"bundleDependencies": false,
"dependencies": {
"graceful-fs": "^4.1.3",
"is-promise": "^2.1.0",
"lodash": "4",
"pify": "^3.0.0",
"steno": "^0.4.1"
},
"deprecated": false,
"description": "Small JSON database for Node, Electron and the browser. Powered by Lodash.",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.9.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.9.0",
"delay": "^2.0.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lodash-id": "^0.14.0",
"mv": "^2.1.1",
"pkg-ok": "^1.0.1",
"prettier": "^1.5.2",
"ramda": "^0.24.1",
"regenerator-runtime": "^0.11.0",
"rimraf": "^2.5.4",
"sinon": "^3.2.1",
"tempfile": "^2.0.0",
"webpack": "^3.3.0"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/typicode/lowdb",
"keywords": [
"flat",
"file",
"local",
"database",
"storage",
"JSON",
"lodash",
"localStorage",
"electron",
"embed",
"embeddable"
],
"license": "MIT",
"main": "./lib/main.js",
"name": "lowdb",
"repository": {
"type": "git",
"url": "git://github.com/typicode/lowdb.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:dist": "rimraf dist && webpack && webpack -p",
"build:lib": "rimraf lib && babel src --out-dir lib && npm run mvAdapters",
"fix": "npm run lint -- --fix",
"lint": "eslint . --ignore-path .gitignore",
"mvAdapters": "rimraf adapters && mv lib/adapters .",
"precommit": "npm test",
"prepublishOnly": "npm run build && pkg-ok",
"test": "jest && npm run lint"
},
"version": "1.0.0"
}