-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "@poppanator/http-helpers-ts",
"version": "1.0.0",
"private": true,
"description": "Helper stuff for HTTP related things",
"repository": {
"type": "git",
"url": "git+https://github.com/poppa/http-helpers-ts.git"
},
"scripts": {
"bootstrap": "npm ci && lerna bootstrap",
"test": "lerna run test",
"build": "lerna run build",
"clean": "lerna run clean",
"clean:spotless": "lerna run clean && rimraf node_modules",
"version:prerelease": "lerna version prerelease",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"version:major": "lerna version major",
"publish": "lerna run build && lerna publish"
},
"keywords": [
"http"
],
"author": {
"name": "Pontus Östlund",
"url": "https://github.com/poppa"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poppa/http-helpers-ts/issues"
},
"homepage": "https://github.com/poppa/http-helpers-ts#readme",
"type": "module",
"workspaces": [
"http-constants",
"http-error"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"terser": "^5.16.5",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.0.2"
}
}