-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "texpand",
"productName": "texpand",
"version": "2.0.6",
"description": "A cross-platform text expander",
"main": "index.js",
"scripts": {
"start": "electron . | bunyan -l debug",
"debug": "electron . | bunyan",
"reconfigure": "electron-rebuild",
"build": "electron-packager . texpand --overwrite --out dist/ && (echo dist/texpand-* | xargs -n 1 cp ConfigurationFile.cson)",
"winbuild": "electron-packager . texpand --overwrite --no-prune --out dist/ && for /d %X in (dist\\texpand-*) do xcopy /y /d ConfigurationFile.cson \"%X\\\"",
"pkgtar": "rm -rf dist/*.tar.gz && find dist -maxdepth 1 -mindepth 1 -type d -exec tar zcf {}.tar.gz {} \\;",
"pkgzip": "rm -rf dist/*.zip && for i in dist/*/; do zip -r -q \"${i%/}.zip\" \"$i\"; done",
"pkgwinzip": "for /d %X in (dist\\texpand-*) do 7z a \"%X.zip\" \"%X\\\"",
"clean": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harryshipton/texpand.git"
},
"keywords": [
"text-expander"
],
"author": "Harry Shipton <harryjshipton@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/harryshipton/texpand/issues"
},
"homepage": "https://github.com/harryshipton/texpand#readme",
"dependencies": {
"bunyan": "^1.8.10",
"copy-paste": "^1.3.0",
"cson": "^4.1.0",
"ejs": "^2.5.6",
"hammerjs": "^2.0.8",
"iohook": "github:harryshipton/iohook",
"iohook-rc-normalise": "github:harryshipton/iohook-rc-normalise",
"jquery": "^3.2.1",
"keysym": "github:substack/node-keysym",
"materialize-css": "^0.98.2",
"minimist": "^1.2.0",
"robotjs": "^0.4.7"
},
"devDependencies": {
"electron": "^1.6.5",
"electron-packager": "^8.6.0",
"electron-rebuild": "^1.5.7"
},
"iohook": {
"targets": [
"electron-53"
],
"platforms": [
"darwin",
"linux",
"win32"
],
"arches": [
"x64",
"ia32"
]
}
}