-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "phpvm",
"version": "1.0.0",
"description": "A simple PHP version manager",
"author": {
"name": "Jerome Thayananthajothy",
"email": "tjthavarshan@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Thavarshan/phpvm.git"
},
"keywords": [
"nvm",
"node",
"iojs",
"version",
"manager"
],
"bugs": {
"url": "https://github.com/Thavarshan/phpvm/issues"
},
"homepage": "https://github.com/Thavarshan/phpvm",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"commander": "^12.1.0",
"node-fetch": "^2.7.0",
"tar": "^7.4.3",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@eslint/js": "^9.12.0",
"@types/jest": "^29.5.13",
"babel-jest": "^29.7.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"jest": "^29.7.0",
"prettier": "^3.3.3"
},
"bin": {
"phpvm": "./index.js"
}
}