forked from typicode/lowdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.09 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
{
"name": "lowdb",
"version": "1.0.0",
"description": "Small JSON database for Node, Electron and the browser. Powered by Lodash.",
"keywords": [
"flat",
"file",
"local",
"database",
"storage",
"JSON",
"lodash",
"localStorage",
"electron",
"embed",
"embeddable"
],
"main": "./lib/main.js",
"scripts": {
"test": "jest && npm run lint",
"lint": "eslint . --ignore-path .gitignore",
"fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build && pkg-ok",
"build": "npm run build:lib && npm run build:dist",
"build:lib": "rimraf lib && babel src --out-dir lib && npm run mvAdapters",
"build:dist": "rimraf dist && webpack && webpack -p",
"mvAdapters": "rimraf adapters && mv lib/adapters ."
},
"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.17.10",
"pify": "^3.0.0",
"steno": "^0.4.1"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"delay": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.0.0-rc.8",
"jest": "^22.4.4",
"lodash-id": "^0.14.0",
"mv": "^2.1.1",
"pkg-ok": "^2.0.0",
"prettier": "^1.13.4",
"ramda": "^0.25.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"sinon": "^4.5.0",
"tempfile": "^2.0.0",
"webpack": "^3.12.0"
},
"engines": {
"node": ">=6"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}