-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.08 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
{
"name": "@ts-common/https",
"version": "0.1.4",
"description": "Promisified HTTPS API",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"test": "tsc && nyc mocha ./dist/test/*.js",
"prepack": "npm install && tsc"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"exclude": [
"dist/test/test.js"
]
},
"types": "dist/index.d.ts",
"files": [
"dist/*.d.ts",
"dist/*.d.ts.map",
"dist/*.js.map",
"dist/*.js",
"src/*.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ts-common/https.git"
},
"keywords": [
"https",
"promise"
],
"author": "Sergey Shandar",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ts-common/https/issues"
},
"homepage": "https://github.com/ts-common/https#readme",
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/node": "^20.8.10",
"tslib": "^2.6.2"
}
}