-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 727 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 727 Bytes
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
{
"name": "kexec",
"version": "3.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"
},
"keywords": [
"exec",
"spawn",
"process",
"kexec"
],
"author": "JP Richardson <jprichardson@gmail.com>",
"license": "MIT",
"main": "./index",
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"mocha": "^2.3.3",
"standard": "^8.0.0"
},
"dependencies": {
"nan": "^2.4.0"
}
}