-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "simple-requests",
"version": "0.4.0",
"description": "A library for performing simple http(s) requests.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "run-s lint test clean compile",
"clean": "rm -rf lib",
"compile": "tsc",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"push": "npm run build && npm publish",
"test": "ts-mocha test/*.test.ts"
},
"keywords": [
"HTTP",
"HTTPS",
"REQUEST",
"SIMPLE",
"GET",
"PUT",
"POST",
"DELETE"
],
"author": "Jason Favrod <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:jfavrod/simple-requests.git"
},
"license": "ISC",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-plugin-jsdoc": "^35.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"ts-mocha": "^7.0.0",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"form-data": "^3.0.0"
}
}