-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.53 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.53 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
{
"name": "@holepunchto/updater-service",
"version": "3.0.5",
"description": "Auto updater service for pear apps",
"main": "index.js",
"files": [
"index.js"
],
"pear": {
"stage": {
"ignore": [
".git",
".github",
".gitignore",
"coverage",
"README.md"
]
}
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test:gen": "brittle -r test/all.mjs test/*.test.js",
"test": "brittle-bare -c test/all.mjs"
},
"dependencies": {
"bare-process": "^4.2.2",
"debounceify": "^1.1.0",
"pear-pipe": "^1.0.5",
"pear-run": "^1.0.7",
"pear-updates": "^1.1.0",
"resolve-reject-promise": "^1.1.0"
},
"devDependencies": {
"bare-fs": "^4.5.0",
"bare-path": "^3.0.0",
"bare-subprocess": "^5.1.4",
"brittle": "^3.19.0",
"pear-interface": "^1.1.0",
"standard": "^17.1.2"
},
"imports": {
"child_process": {
"bare": "bare-subprocess",
"default": "child_process"
},
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"path": {
"bare": "bare-path",
"default": "path"
},
"process": {
"bare": "bare-process",
"default": "process"
}
},
"author": "Holepunch",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/updater-service.git"
},
"bugs": {
"url": "https://github.com/holepunchto/updater-service/issues"
},
"homepage": "https://github.com/holepunchto/updater-service#readme"
}