-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "strapi-provider-email-test",
"version": "1.0.0",
"description": "In-memory mock email provider for Strapi V4",
"keywords": [
"strapi",
"email",
"provider",
"mock",
"test"
],
"jest": {
"preset": "ts-jest"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint --ext .ts src",
"clean-build": "rm -rf ./dist/*",
"build": "npm run clean-build && tsc -p ./tsconfig.json",
"prepublish": "npm run build"
},
"homepage": "https://github.com/solydhq/strapi-provider-email-test",
"author": "@solyd <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-typescript": "^11.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}