-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
123 lines (123 loc) · 3.25 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "fontplop",
"productName": "fontplop",
"version": "1.4.0",
"description": "Drag'n'drop font converter.",
"main": "src/index.ts",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"lint": "tslint --project tsconfig.json --type-check --force --fix",
"publish": "electron-forge publish",
"test": "jest",
"postinstall": "opencollective postinstall"
},
"keywords": [],
"contributors": [
{
"name": "Matthew Gonzalez",
"email": "[email protected]",
"url": "http://matthewgonzalez.me"
},
{
"name": "Brian Gonzalez",
"email": "[email protected]",
"url": "http://www.briangonzalez.org"
}
],
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"dmg"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "npm",
"extendInfo": "Info.plist",
"icon": "src/assets/system-icons/icon.icns",
"name": "fontplop"
},
"electronWinstallerConfig": {
"name": "fontplop"
},
"electronInstallerDMG": {
"background": "src/assets/build/dmg-background-combined.tiff",
"icon": "src/assets/system-icons/icon.icns"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "matthewgonzalez",
"name": "fontplop"
},
"windowsStoreConfig": {
"packageName": "",
"name": "fontplop"
}
}
},
"dependencies": {
"electron-compile": "^6.4.2",
"electron-devtools-installer": "^2.2.0",
"electron-json-storage": "^3.2.0",
"fonteditor-core": "0.0.37",
"github-version-checker": "github:matthewgonzalez/github-version-checker",
"opencollective": "^1.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-dropzone": "^4.1.3",
"react-hot-loader": "^3.0.0-beta.7",
"replace-ext": "^1.0.0",
"rimraf": "^2.6.2",
"tslib": "^1.7.1",
"ttf2woff2": "^2.0.3"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/electron-devtools-installer": "^2.0.2",
"@types/jest": "^21.1.2",
"@types/react": "16.0.10",
"@types/react-dom": "^16.0.1",
"@types/react-dropzone": "^4.1.0",
"@types/replace-ext": "0.0.27",
"@types/rimraf": "^2.0.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"electron-forge": "^4.1.2",
"electron-prebuilt-compile": "1.7.8",
"jest": "^21.2.1",
"ts-jest": "^21.1.0",
"tslint": "^5.7.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.5.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/fontplop",
"logo": "https://opencollective.com/fontplop/logo.txt"
}
}