-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (29 loc) · 845 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
{
"name": "set-memory",
"version": "1.0.7",
"description": "It uses NODE OPTIONS to set the memory when deploying any app /during building javascript and typescript projects so that it doesnt lead to out of heap memory allocation issues, especially on low memory machines.Use npm i -g set-memory Use set-memory <Number> and set-memory-auto for execution.",
"main": "index.js",
"bin": {
"set-memory": "index.js",
"set-memory-auto": "auto.js"
},
"scripts": {
"set-memory": "node index.js",
"set-memory-auto": "node auto.js"
},
"keywords": [
"set-memory-limit",
"node-options",
"deployment",
"memory",
"fix"
],
"author": "magmastorm3007",
"license": "ISC",
"dependencies": {
"child-process": "^1.0.2",
"dot-env": "^0.0.1",
"fs": "^0.0.1-security",
"os": "^0.1.2"
}
}