-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "adonis-jest",
"version": "4.0.0",
"description": "Jest preset for Adonis 5 support",
"main": "jest-preset.js",
"scripts": {
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium/adonis-jest.git"
},
"keywords": [
"jest",
"adonis"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium/adonis-jest/issues"
},
"homepage": "https://github.com/zakodium/adonis-jest#readme",
"dependencies": {
"@adonisjs/ioc-transformer": "^2.3.4",
"@adonisjs/require-ts": "^2.0.12",
"jest-environment-node": "^29.0.1"
},
"peerDependencies": {
"@adonisjs/application": "*",
"@adonisjs/core": "*",
"typescript": "*"
},
"devDependencies": {
"@adonisjs/application": "^5.2.5",
"@adonisjs/core": "^5.8.6",
"@zakodium/eslint-config": "^6.0.0",
"eslint": "^8.23.0",
"pino-pretty": "^9.1.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
}
}