-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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": "@day1co/http-request-sync",
"version": "1.0.2",
"description": "quick and dirty synchronous wrapper of http.request",
"author": "Day1Company",
"license": "MIT",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/day1co/http-request-sync.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./coverage ./lib ./node_modules",
"clean:build": "rimraf ./lib",
"lint": "eslint ./src",
"prebuild": "npm-run-all clean:build lint",
"prepublishOnly": "npm run build",
"serve": "echo no serve",
"start": "npm run serve",
"test": "jest --coverage --forceExit",
"watch": "tsc -w"
},
"devDependencies": {
"@day1co/eslint-config": "^1.0.0",
"@day1co/prettier-config": "^1.0.0",
"@day1co/tsconfig": "^1.2.1",
"@types/jest": "^29.5.0",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}