-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "bm-ev-handler-builder",
"version": "1.0.42",
"description": "lib of build a handler of events by holes",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "commonjs",
"typesVersions": {
"*": {
"dist/*": [
"dist/*"
]
}
},
"author": "Bruno Marques",
"keywords": [
"gimymo",
"hestia",
"event",
"handler",
"bm",
"wh",
"bruno",
"marques"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc --declaration -p tsconfig.build.json",
"dev": "tsn --respawn --transpileOnly --ignore-watch node_modules src/main.ts",
"pub": "npm run build && npm publish",
"lint": "eslint --ext .ts src/ --fix",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --verbose --coverage --coverageReporters='text-summary' > coverage.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blmarquess/bm-event-handler-builder.git"
},
"homepage": "https://github.com/blmarquess/bm-event-handler-builder#readme",
"bugs": {
"url": "https://github.com/blmarquess/bm-event-handler-builder/issues"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "latest",
"typescript": "^4.9"
},
"files": [
"dist/**/*"
]
}