forked from electron-userland/electron-json-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "electron-json-storage",
"version": "1.1.0",
"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 progress && electron-mocha --renderer --recursive tests -R progress",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"electron-mocha": "^0.8.0",
"electron-prebuilt": "^0.36.5",
"jsdoc-to-markdown": "^1.1.1",
"jshint": "^2.9.1",
"mochainon": "^1.0.0"
},
"dependencies": {
"bluebird": "^3.1.4",
"lodash": "^4.0.1",
"rimraf": "^2.5.1"
}
}