forked from wrumsby/rest-api-url-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
{
"name": "@conqa/rest-api-url-builder",
"version": "1.2.4",
"repository": "https://github.com/Flyrell/rest-api-url-builder.git",
"author": "Dawid Zbiński <dawid@zbinski.eu>",
"license": "MIT",
"private": false,
"description": "Build URLs for REST API without any unnecessary complexity. You can bind named parameters as well as query parameters with just few lines of code",
"keywords": [
"url builder",
"rest url",
"rest api",
"rest api url",
"rest builder"
],
"test": "jest",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "npx jest"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/url-parse": "^1.4.2",
"husky": "^1.3.1",
"jest": "^23.6.0",
"rollup": "^1.10.0",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"typescript": "^3.2.2"
},
"dependencies": {
"url-parse": "^1.4.4"
}
}