-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.5 KB
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
{
"name": "disposable-email-domains-js",
"version": "1.24.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "prettier --check . && tsc --noEmit",
"lint:fix": "prettier --write .",
"prepare": "npm run build",
"postbuild": "run-s postbuild:copy_disposable_email_blocklist_json",
"postbuild:copy_disposable_email_blocklist_json": "mkdir -p dist/dict && cp src/dict/disposable_email_blocklist.json dist/dict/disposable_email_blocklist.json",
"test": "run-p test:*",
"test:jest": "jest --coverage --reporters=jest-junit",
"test:example": "cd example && npm install && npm run test",
"generate:disposable_email_blocklist_json": "ts-node bin/generate_disposable_email_blocklist.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mziyut/disposable-email-domains-js.git"
},
"author": "Yuta Mizui <mziyut.dev@gmail.com>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/mziyut/disposable-email-domains-js/issues"
},
"homepage": "https://github.com/mziyut/disposable-email-domains-js#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.2.0",
"jest": "^30.0.4",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "^4.2.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
}
}