forked from vercel/edge-runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@edge-runtime/root",
"homepage": "https://github.com/vercel/edge-runtime#readme",
"version": "0.0.0",
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "Gal Schlezinger",
"email": "[email protected]"
},
{
"name": "Javi Velasco",
"email": "[email protected]"
},
{
"name": "nkzawa",
"email": "[email protected]"
},
{
"name": "feugy",
"email": "[email protected]"
},
{
"name": "Balázs Orbán",
"email": "[email protected]"
},
{
"name": "Lee Robinson",
"email": "[email protected]"
},
{
"name": "Yixuan Xu",
"email": "[email protected]"
},
{
"name": "Jan Potoms",
"email": "[email protected]"
},
{
"name": "await-ovo",
"email": "[email protected]"
},
{
"name": "Ian Mitchell",
"email": "[email protected]"
},
{
"name": "SukkaW",
"email": "[email protected]"
},
{
"name": "Justin Ridgewell",
"email": "[email protected]"
},
{
"name": "Stefan Judis",
"email": "[email protected]"
},
{
"name": "Steren",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/edge-runtime.git"
},
"bugs": {
"url": "https://github.com/vercel/edge-runtime/issues"
},
"devDependencies": {
"@changesets/cli": "latest",
"@jest/types": "28.1.3",
"@svitejs/changesets-changelog-github-compact": "latest",
"@types/jest": "28.1.8",
"@types/node": "12",
"c8": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"jest": "28.1.3",
"jest-watch-typeahead": "latest",
"nano-staged": "latest",
"prettier": "latest",
"simple-git-hooks": "latest",
"ts-jest": "28.0.8",
"ts-node": "latest",
"turbo": "latest",
"typescript": "latest"
},
"engines": {
"node": ">=12",
"pnpm": ">=6"
},
"scripts": {
"build": "turbo run build",
"clean": "pnpm -r run clean && rm -rf ./node_modules",
"clean:build": "pnpm -r run clean:build",
"clean:node": "pnpm -r run clean:node",
"contributors": "git-authors-cli && finepack",
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
"lockfile": "pnpm install --lockfile && git add pnpm-lock.yaml && git commit -m \"build: regenerate lock\"",
"postinstall": "./node_modules/.bin/simple-git-hooks",
"prebuild": "pnpm -r run clean:build",
"test": "c8 -x 'packages/primitives/*' turbo run test --concurrency=1",
"update": "pnpm -r exec ncu -- --upgrade && ncu -- --upgrade",
"update:check": "pnpm -r exec ncu -- --errorLevel 2 && ncu -- --errorLevel 2",
"version:prepare": "changeset version && pnpm install --no-frozen-lockfile",
"version:publish": "changeset publish"
},
"private": true,
"nano-staged": {
"*.{ts,tsx,md,mdx,js,jsx}": [
"prettier --write"
],
"package.json": [
"finepack"
]
},
"packageManager": "[email protected]",
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}