-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@tinkoff/request",
"version": "0.6.0",
"description": "Request library extendable by plugins",
"private": true,
"workspaces": [
"packages/**/*",
"website"
],
"scripts": {
"test": "jest --coverage",
"size": "size-limit",
"bootstrap": "yarn --frozen-lockfile",
"build": "lerna run prepack",
"watch": "lerna run watch --parallel",
"release": "lerna publish --no-private --conventional-commits --ignore-scripts --yes --create-release github",
"clean": "git clean -Xdf .",
"docs:build": "yarn --cwd ./website build",
"docs:start": "yarn --cwd ./website start",
"docs:publish": "yarn --cwd ./website publish-gh-pages"
},
"author": {
"name": "Tinkoff Team",
"email": "[email protected]"
},
"keywords": [
"request"
],
"license": "ISC",
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@tramvai/build": "^2.6.11",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.1",
"jest": "^27.5.1",
"jest-date-mock": "^1.0.8",
"lerna": "^5.6.2",
"prettier": "^2.5.1",
"size-limit": "^7.0.8",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}