-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "prisma-event-dispatcher",
"version": "1.0.14",
"description": "Event Dispatcher for Prisma Models",
"main": "dist/prisma.event.dispatcher.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"postinstall": "echo \"export { Prisma } from '.prisma/client'\" > ./dist/prisma.types.d.ts",
"test": "tap --ts",
"posttest": "tap --ts --coverage-report=lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AvantaR/prisma-event-dispatcher.git"
},
"keywords": [
"prisma",
"events",
"dispatcher",
"eventemitter",
"eventsdispatcher",
"orm"
],
"files": [
"dist/**/*"
],
"author": "Krzysztof Szala",
"license": "MIT",
"bugs": {
"url": "https://github.com/AvantaR/prisma-event-dispatcher/issues"
},
"homepage": "https://github.com/AvantaR/prisma-event-dispatcher#readme",
"devDependencies": {
"@types/tap": "^15.0.5",
"codecov": "^3.8.3",
"prettier": "^2.4.1",
"tap": "^15.0.10",
"ts-node": "^10.4.0",
"ts-sinon": "^2.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.4"
},
"tap": {
"check-coverage": true
}
}