-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "nest-event",
"version": "1.0.8",
"description": "Event handling with decorators for NestJS Framework",
"main": "index.js",
"scripts": {
"test": "jest --notify --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageDirectory=coverage",
"build": "./build.sh",
"npm:publish": "cd lib && npm publish",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-dragons/nest-event.git"
},
"keywords": [
"nest",
"nestjs",
"eventemitter",
"event-driven",
"modules",
"nest"
],
"author": "Yakup Cilesiz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/javascript-dragons/nest-event/issues"
},
"homepage": "https://github.com/javascript-dragons/nest-event#readme",
"dependencies": {
"@nestjs-plus/discovery": "^2.0.2",
"@nestjs/common": "^6.7.2",
"@nestjs/core": "^6.7.2",
"reflect-metadata": "^0.1.13",
"strict-event-emitter-types": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"rxjs": "^6.5.3",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"tslint": "^5.20.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}