-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.47 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.47 KB
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
{
"name": "dialogy",
"version": "0.2.2",
"description": "Show native dialogs.",
"repository": {
"type": "git",
"url": "https://github.com/Richienb/dialogy.git"
},
"author": "Richie Bendall <richiebendall@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "xo",
"test": "xo && ava",
"build": "tsc & neon build --release",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish",
"install": "node-pre-gyp install --fallback-to-build=false || neon build --release"
},
"keywords": [
"dialog",
"native",
"folder",
"file",
"open",
"save",
"windows",
"macos",
"linux",
"os"
],
"dependencies": {
"neon-cli": "^0.5.0",
"node-pre-gyp": "^0.15.0"
},
"devDependencies": {
"@richienb/tsconfig": "^0.1.1",
"ava": "^3.13.0",
"eslint-config-richienb": "^0.5.0",
"node-pre-gyp-github": "^1.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"xo": "^0.33.1"
},
"binary": {
"module_name": "index",
"host": "https://github.com/Richienb/dialogy/releases/download/",
"remote_path": "v{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./native",
"pkg_path": "."
},
"xo": {
"extends": "richienb/typescript",
"overrides": [
{
"files": "test.ts",
"rules": {
"node/no-missing-import": 0
}
}
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}