forked from electron-userland/electron-json-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "electron-json-storage",
"version": "2.0.3",
"description": "Easily write and read user settings in Electron apps",
"main": "lib/storage.js",
"homepage": "https://github.com/jviotti/electron-json-storage",
"repository": {
"type": "git",
"url": "git://github.com/jviotti/electron-json-storage.git"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "electron-mocha --recursive tests -R spec && electron-mocha --renderer --recursive tests -R spec",
"lint": "jshint --config .jshintrc --reporter unix lib tests",
"readme": "jsdoc2md --template doc/README.hbs lib/storage.js > README.md"
},
"keywords": [
"electron",
"json",
"storage",
"user",
"app",
"data"
],
"author": "Juan Cruz Viotti <jviottidc@gmail.com>",
"license": "MIT",
"devDependencies": {
"electron-mocha": "^2.3.1",
"electron-prebuilt": "^1.2.7",
"jsdoc-to-markdown": "^1.1.1",
"jshint": "^2.9.1",
"mochainon": "^1.0.0"
},
"dependencies": {
"async": "^2.0.0",
"exists-file": "^2.1.0",
"lodash": "^4.0.1",
"rimraf": "^2.5.1"
}
}