forked from typicode/lowdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.88 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
{
"name": "lowdb",
"version": "0.16.2",
"description": "JSON database for Node and the browser powered by lodash API",
"keywords": [
"flat",
"file",
"local",
"database",
"storage",
"JSON",
"lo-dash",
"lodash",
"underscore",
"localStorage",
"embed",
"embeddable"
],
"main": "./lib/main.js",
"scripts": {
"test": "npm run tape && standard",
"fix": "standard --fix",
"tape": "tape -r babel-register -r babel-polyfill test/*.js | tap-spec",
"prepublish": "npm run build && pkg-ok",
"precommit": "npm test",
"build": "npm run build:lib && npm run build:dist",
"build:lib": "rimraf lib && babel src --out-dir lib",
"build:dist": "rimraf dist && webpack && webpack -p"
},
"repository": {
"type": "git",
"url": "git://github.com/typicode/lowdb.git"
},
"author": "Typicode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/lowdb/issues"
},
"homepage": "https://github.com/typicode/lowdb",
"dependencies": {
"graceful-fs": "^4.1.3",
"is-promise": "^2.1.0",
"lodash": "4",
"steno": "^0.4.1"
},
"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",
"husky": "^0.13.0",
"lodash-id": "^0.13.0",
"pkg-ok": "^1.0.1",
"ramda": "^0.23.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.2",
"standard": "^8.5.0",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"tempfile": "^1.1.1",
"webpack": "^2.2.1"
},
"engines": {
"node": ">= 0.12"
},
"browser": {
"./src/storages/file-sync.js": "./src/storages/browser.js",
"./lib/storages/file-sync.js": "./lib/storages/browser.js"
},
"standard": {
"parser": "babel-eslint"
}
}