forked from vercel-community/php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 860 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
{
"name": "tim-test-php",
"description": "Vercel PHP runtime",
"version": "0.0.1",
"license": "MIT",
"main": "./dist/index.js",
"homepage": "https://github.com/SchramlTim/php",
"repository": {
"type": "git",
"url": "https://github.com/SchramlTim/php.git"
},
"keywords": [
"vercel",
"zeit",
"now",
"php",
"builder",
"runtime",
"serverless",
"deployment"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"test": "jest --silent",
"test-watch": "jest --watch",
"prepublishOnly": "tsc"
},
"files": [
"dist",
"conf"
],
"dependencies": {
"@libphp/amazon-linux-2-v82": "latest"
},
"devDependencies": {
"@types/glob": "^7.1.2",
"@types/node": "^18.7.15",
"@vercel/build-utils": "^5.3.0",
"jest": "^29.0.2",
"typescript": "^4.6.3"
}
}