-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 909 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
38
39
40
41
42
43
44
{
"name": "branchy",
"version": "2.0.0",
"description": "Comfortly execute a function in a separate process",
"main": "lib/branchy.js",
"scripts": {
"test": "eslint lib test && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loilo/branchy.git"
},
"keywords": [
"fork",
"process",
"promise"
],
"author": "Florian Reuschel <[email protected]>",
"files": [
"lib",
"README.md",
"branchy.svg"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/loilo/branchy/issues"
},
"homepage": "https://github.com/loilo/branchy#readme",
"dependencies": {
"better-queue": "^3.8.7"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.3.0",
"prettier": "^2.0.5"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">= 10.0.0"
}
}