-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.37 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
59
{
"name": "adonis-bumblebee",
"version": "2.2.0",
"description": "Api Transformer Provider for AdonisJs Framework",
"main": "index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run report-coverage",
"test:local": "FORCE_COLOR=true node bin/index.js",
"test": "nyc npm run test:local",
"coverage": "nyc npm run test:local",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"standard": {
"global": [
"use",
"it",
"describe",
"context",
"before",
"after"
]
},
"nyc": {
"exclude": [
"bin"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhwilr/adonis-bumblebee.git"
},
"keywords": [
"adonis",
"api",
"transformer"
],
"author": "Ralph Huwiler",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhwilr/adonis-bumblebee/issues"
},
"homepage": "https://github.com/rhwilr/adonis-bumblebee#readme",
"devDependencies": {
"@adonisjs/ace": "^5.0.8",
"@adonisjs/fold": "^4.0.9",
"@adonisjs/sink": "^1.0.17",
"codecov": "^3.6.1",
"cz-conventional-changelog": "^3.1.0",
"fs-extra": "^8.0.0",
"japa": "^3.0.1",
"lodash": "^4.17.15",
"macroable": "^4.0.2",
"nyc": "^15.0.0",
"semver": "^7.1.3",
"standard": "^14.3.3"
}
}