forked from meteor/node-kexec
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 842 Bytes
/
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
{
"name": "kexec",
"version": "4.0.0",
"description": "Replace your Node.js process with another process. Like Ruby exec.",
"homepage": "https://github.com/jprichardson/node-kexec",
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/node-kexec"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "mocha",
"semantic-release": "semantic-release"
},
"keywords": [
"exec",
"spawn",
"process",
"kexec"
],
"author": "JP Richardson <[email protected]>",
"license": "MIT",
"main": "./index",
"engines": {
"node": ">=10"
},
"devDependencies": {
"mocha": "^8.3.2",
"semantic-release": "^17.4.2",
"standard": "^14.3.4"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^3.1.0"
}
}