-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "electron-json-config",
"version": "2.1.0",
"description": "Simply set and get configuration from a json file for your Electron app",
"main": "lib/index.js",
"keywords": [
"conf",
"config",
"configuration",
"settings",
"store",
"json",
"data",
"electron",
"persistent",
"save"
],
"author": {
"name": "de-luca",
"email": "dev@de-luca.io",
"url": "https://de-luca.io"
},
"repository": {
"type": "git",
"url": "https://github.com/de-luca/electron-json-config.git"
},
"scripts": {
"lint": "eslint src/*.ts",
"test": "electron-mocha -r ts-node/register '**/*.spec.ts'",
"test:coverage": "nyc npm run test",
"test:docker": "xvfb-run --server-args=\"-screen 0 1024x780x24\" npm run test",
"build": "tsc",
"prepare": "npm run build"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^10.0.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"chai": "^4.2.0",
"electron": "^27.1.3",
"electron-mocha": "^12.0.0",
"eslint": "^8.4.1",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^5.0.4"
},
"files": [
"lib/"
],
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.js",
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.*",
"src/index.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcovonly",
"text"
],
"all": true,
"sourceMap": true,
"instrument": true,
"check-coverage": false,
"cache": true
}
}