-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.06 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-cfg",
"version": "1.2.7",
"description": "Simple key-value storage for electron",
"main": "src/index.js",
"scripts": {
"lint": "eslint 'src/**/*.js'",
"test": "humile",
"test:full": "npm run test && npm run lint && tsc --noEmit --skipLibCheck",
"postversion": "git push && git push --tags",
"prepack": "npm run test:full",
"preversion": "npm run test:full"
},
"repository": "megahertz/electron-cfg",
"files": [
"src/*",
"!__specs__"
],
"keywords": [
"electron",
"atom",
"settings",
"options",
"storage",
"key-value",
"window",
"state"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/electron-cfg/issues",
"homepage": "https://github.com/megahertz/electron-cfg#readme",
"engines": {
"node": ">=8.0"
},
"typings": "src/index.d.ts",
"devDependencies": {
"electron": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"humile": "^0.2.16",
"typescript": "*"
}
}