forked from Teamwork/node-auto-launch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 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
{
"name": "auto-launch",
"version": "5.1.0",
"description": "Launch node applications or executables at login (Mac, Windows, Linux and FreeBSD)",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers coffee:coffeescript/register tests/*.coffee",
"lint": "coffeelint -f ./node_modules/teamwork-coffeelint-rules/coffeelint.json src/ tests/",
"build": "coffee -c -o dist/ src/"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/4ver/node-auto-launch"
},
"keywords": [
"login",
"launch",
"node-webkit",
"electron",
"boot",
"login-items"
],
"author": "Donal Linehan",
"contributors": [
"Adam Lynch <adam@teamwork.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/4ver/node-auto-launch/issues"
},
"devDependencies": {
"@coffeelint/cli": "^5.2.11",
"chai": "^3.5.0",
"coffeescript": "^2.7.0",
"mocha": "^3.0.0",
"teamwork-coffeelint-rules": "0.0.1"
},
"homepage": "https://github.com/4ver/node-auto-launch",
"dependencies": {
"applescript": "^1.0.0",
"mkdirp": "^0.5.1",
"untildify": "^3.0.2",
"winreg": "1.2.4"
},
"overrides": {
"graceful-fs": "^4.2.11"
}
}