-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1000 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
32
33
34
35
36
37
38
39
{
"name": "fluent-rest-api",
"version": "1.3.6",
"description": "A typesafe fluent API to make rest-requests",
"keywords": [
"fluent",
"api",
"rest",
"http",
"request"
],
"scripts": {
"cleanup": "node cleanup.js",
"cleanbuild": "npm run cleanup && npm run build && npm run wp",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run cleanbuild",
"wp": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrCodingB/Fluent-Rest-Api.git"
},
"main": "lib/fluent-rest-api.js",
"typings": "lib/fluent-rest-api.d.ts",
"author": "MrCodingB",
"license": "MIT",
"readme": "README.md",
"bugs": {
"url": "https://github.com/MrCodingB/Fluent-Rest-Api/issues"
},
"homepage": "https://github.com/MrCodingB/Fluent-Rest-Api#readme",
"devDependencies": {
"@types/node": "^14.14.27",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
}
}