-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 961 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
45
46
47
48
49
50
{
"name": "vercel-bref",
"version": "0.2.0",
"license": "MIT",
"main": "./dist/index.js",
"homepage": "https://github.com/juicyfx/vercel-bref",
"repository": {
"type": "git",
"url": "https://github.com/juicyfx/vercel-bref.git"
},
"keywords": [
"vercel",
"zeit",
"now",
"php",
"builder",
"runtime",
"serverless",
"deployment",
"bref"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"test": "jest --verbose",
"test-watch": "jest --verbose --watch",
"prepublishOnly": "tsc"
},
"files": [
"dist",
"native.zip",
"lib/bootstrap"
],
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/spec/**/*.[jt]s?(x)"
],
"rootDir": "."
},
"dependencies": {
"@vercel/build-utils": "^2.13.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^18.14.6",
"jest": "^27.5.1",
"typescript": "^4.9.5"
}
}