This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@japa/base-reporter",
"version": "1.1.2",
"description": "Base reporter to create customized testing reporters for Japa",
"type": "commonjs",
"main": "./build/index.js",
"files": [
"build/src",
"build/index.js",
"build/index.d.ts"
],
"types": "./build/index.d.ts",
"exports": {
".": "./build/index.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "node --require=@adonisjs/require-ts/build/register bin/test.ts",
"clean": "del-cli build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
"release": "np --message=\"chore(release): %s\"",
"version": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"sync-labels": "github-label-sync --labels .github/labels.json @japa/base-reporter"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"keywords": [],
"author": "japa,virk",
"license": "MIT",
"devDependencies": {
"@adonisjs/require-ts": "^2.0.13",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@japa/assert": "^1.4.1",
"@japa/core": "^7.3.2",
"@japa/run-failed-tests": "^1.1.1",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"@types/ms": "^0.7.31",
"@types/node": "^18.14.5",
"del-cli": "^5.0.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-adonis": "^3.0.3",
"eslint-plugin-prettier": "^4.0.0",
"github-label-sync": "^2.2.0",
"husky": "^8.0.3",
"np": "^7.6.3",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptPackage",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
},
"eslintIgnore": [
"build"
],
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"dependencies": {
"@japa/errors-printer": "^2.1.0",
"@poppinss/cliui": "^3.0.5",
"ms": "^2.1.3"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/japa/base-reporter.git"
},
"bugs": {
"url": "https://github.com/japa/base-reporter/issues"
},
"homepage": "https://github.com/japa/base-reporter#readme"
}