forked from tinyhttp/tinyhttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "@tinyhttp/monorepo",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/talentlessguy/tinyhttp.git",
"author": "talentlessguy <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.4.0",
"pnpm": ">=5.3.0"
},
"files": [
"dist"
],
"devDependencies": {
"@changesets/cli": "^2.9.2",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.22",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"codecov": "^3.7.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rollup-plugin-terser": "^6.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
},
"scripts": {
"prepare": "eslint ./packages/*/src/*.ts && pnpm build && pnpm test",
"build": "pnpm build -r",
"chgset:run": "changeset",
"chgset:version": "changeset version",
"chgset": "pnpm chgset:run && pnpm chgset:version",
"publish": "changeset publish",
"test": "jest"
}
}