-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 875 Bytes
/
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
{
"name": "request-half",
"version": "1.1.2",
"author": "Seungmin Kim",
"repository": "http://github.com/olimot/request-half",
"description": "functional-friendly, fetch-like nodejs native request",
"main": "lib/request.js",
"types": "src/request.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "tsc",
"test": "mocha 'src/**/*.spec.ts'",
"cover": "nyc yarn test"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}