-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "electron-json-storage",
"version": "4.6.0",
"description": "Easily write and read user settings in Electron apps",
"main": "lib/storage.js",
"homepage": "https://github.com/electron-userland/electron-json-storage",
"repository": {
"type": "git",
"url": "git://github.com/electron-userland/electron-json-storage.git"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run lint && electron-mocha --recursive tests -R spec && electron-mocha --renderer --recursive tests -R spec",
"lint": "jshint --config .jshintrc --reporter unix lib tests stress",
"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": {
"chai": "^4.2.0",
"electron": "^10.1.3",
"electron-mocha": "^9.2.0",
"jsdoc-to-markdown": "^6.0.1",
"jshint": "^2.9.1",
"tmp": "0.0.31"
},
"dependencies": {
"async": "^2.0.0",
"lockfile": "^1.0.4",
"lodash": "^4.0.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.1",
"write-file-atomic": "^2.4.2"
}
}