forked from nospaceships/node-os-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
{
"name": "@neuralegion/os-service",
"version": "1.2.6",
"description": "Run Node.JS programs as native Operating System Services.",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"example": "example"
},
"gypfile": true,
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"nan": "^2.22.0",
"node-gyp-build": "^4.8.3",
"plist": "^3.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
{
"name": "Stephen Vickers",
"email": "stephen.vickers@nospaceships.com"
},
{
"name": "NoSpaceships Ltd",
"email": "hello@nospaceships.com"
},
{
"name": "Artem Derevnjuk",
"email": "artem.derevnjuk@neuralegion.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/node-os-service.git"
},
"bugs": {
"url": "https://github.com/NeuraLegion/node-os-service/issues"
},
"keywords": [
"background-process",
"background-service",
"daemon",
"linux-daemon",
"linux-service",
"service",
"windows",
"windows-daemon",
"windows-service"
],
"author": "NoSpaceships Ltd <hello@nospaceships.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prebuildify": "^6.0.1",
"prebuildify-cross": "^5.1.1",
"semantic-release": "^23.0.8"
},
"scripts": {
"semantic-release": "semantic-release",
"build:gyp": "prebuildify --napi false --strip --target 10.24.1 --target 12.22.12 --target 14.21.3 --target 16.20.2 --target 18.17.1 --target 19.9.0 --target 20.12.2 --target 21.7.3 --target 22.11.0",
"build:gyp-cross": "prebuildify-cross --napi false --strip --target 10.24.1 --target 12.22.12 --target 14.21.3 --target 16.20.2 --target 18.17.1 --target 19.9.0 --target 20.12.2 --target 21.7.3 --target 22.11.0",
"native_install": "node-gyp-build",
"install": "node scripts/install.js",
"prepare": "is-ci || husky install"
},
"overrides": {
"prebuildify": {
"node-abi": "^3.71.0"
}
}
}