-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
51
52
53
54
55
56
57
58
{
"name": "adonis-kvn-response",
"version": "2.1.0",
"description": "AdonisJS response helper for REST API",
"main": "build/src/providers/KvnResponseProvider.js",
"dependencies": {
"adonis-bumblebee-ts": "^1.0.0"
},
"devDependencies": {
"@adonisjs/core": "^5.4.2",
"@adonisjs/mrm-preset": "^4.1.2",
"@adonisjs/require-ts": "^2.0.8",
"@types/node": "^16.11.12",
"del-cli": "^4.0.1",
"eslint": "^8.4.1",
"eslint-plugin-adonis": "^2.1.0",
"japa": "^4.0.0",
"mrm": "^3.0.10",
"typescript": "^4.5.2"
},
"scripts": {
"pretest": "npm run lint && tsc --noEmit",
"test": "node japaFile.js",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"lint": "eslint . --ext=.ts --fix",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile"
},
"adonisjs": {
"types": "adonis-kvn-response/build/adonis-typings",
"providers": [
"adonis-kvn-response"
]
},
"keywords": [
"adonis",
"adonisjs",
"api",
"rest",
"provider",
"response"
],
"author": "Kevin Abestilla",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kevin1193/adonis-kvn-response.git"
},
"bugs": {
"url": "https://github.com/kevin1193/adonis-kvn-response/issues"
},
"homepage": "https://github.com/kevin1193/adonis-kvn-response#readme",
"files": [
"build/providers",
"build/adonis-typings"
]
}