-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 923 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
40
41
42
43
{
"name": "drowsy",
"description": "The lazy integration tool for RESTful interfaces",
"main": "lib/drowsy.js",
"types": "lib/drowsy.d.ts",
"keywords": [
"api",
"api-client",
"api-integration",
"rest",
"rest-client",
"rest-integration",
"restful",
"restful-client",
"restful-integration"
],
"author": "Iain Reid (https://chaff.land)",
"homepage": "https://github.com/iainjreid/drowsy#readme",
"license": "MIT",
"files": [
"lib/drowsy.js",
"lib/drowsy.d.ts"
],
"devDependencies": {
"@emphori/eslint-config": "^0.1.7",
"eslint": "^6.6.0",
"jest": "^24.9.0"
},
"eslintConfig": {
"extends": "@emphori"
},
"repository": {
"type": "git",
"url": "https://github.com/iainjreid/drowsy.git"
},
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"bugs": {
"url": "https://github.com/iainjreid/drowsy/issues"
}
}