forked from tinyhttp/tinyhttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"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"
},
"devDependencies": {
"@changesets/cli": "^2.10.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/ejs": "^3.0.4",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eta": "^1.10.1",
"husky": "4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"rollup": "^2.27.1",
"rollup-plugin-typescript2": "^0.27.2",
"supertest-fetch": "^1.4.3",
"ts-jest": "^26.4.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"scripts": {
"prerelease": "pnpm lint && pnpm build && pnpm test",
"build": "pnpm build -r",
"chgset:run": "changeset",
"chgset:version": "changeset version",
"chgset": "pnpm chgset:run && pnpm chgset:version",
"release": "pnpm publish -r",
"release-no-git-checks": "pnpm publish -r --no-git-checks",
"test": "jest --detectOpenHandles",
"lint": "eslint . --ext=js,mjs,ts,cjs",
"format": "prettier --check \"./**/*.{ts,js,mjs,cjs}\""
}
}