-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "jelban.js",
"version": "1.0.0",
"description": "Another email addresses filter; filters out disposable and addresses' alias",
"main": "dist/src/index",
"typings": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "jest",
"test:integration": "jest --testMatch **/test/integration/**/*.integration.spec.ts ----coverageDirectory coverage/integration",
"test:watch": "npm run test -- --watch",
"lint": "eslint src/** --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check src/**/*.ts",
"mutate": "stryker run",
"doc": "typedoc src/index.ts"
},
"files": [
"dist/src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Fcmam5/jelbann-js.git"
},
"keywords": [
"email",
"spam",
"privacy"
],
"author": "Fortas Abdeldjalil (Fcmam5)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fcmam5/jelbann-js/issues"
},
"homepage": "https://github.com/Fcmam5/jelbann-js#readme",
"devDependencies": {
"@stryker-mutator/core": "^6.4.1",
"@stryker-mutator/jest-runner": "^6.4.1",
"@stryker-mutator/typescript-checker": "^6.4.1",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.9.5"
}
}