-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.03 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-storage",
"version": "1.0.7",
"description": "module for managing storage in electron applications",
"main": "dist/index.js",
"scripts": {
"test": "electron-mocha --recursive tests -R spec && electron-mocha --renderer --recursive tests -R spec",
"lint": "eslint ./src/**/*.js; exit 0",
"build": "gulp"
},
"homepage": "https://github.com/ran-y/electron-storage",
"repository": {
"type": "git",
"url": "git@github.com:ran-y/electron-storage.git"
},
"keywords": [
"electron",
"storage",
"json",
"get",
"set",
"isPathExists"
],
"author": "Ran yitzhaki",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"electron-mocha": "^2.3.1",
"electron-prebuilt": "^1.4.10",
"eslint": "^2.9.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.10.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"proxyquire": "^1.7.10"
},
"dependencies": {
"ya-storage": "^1.0.3"
}
}