-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.42 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
{
"name": "typed-ts-events",
"version": "3.0.1",
"description": "Typed events for typescript",
"main": "dist/events.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npm test && npm run build",
"build": "npx webpack",
"preversion": "npm run test",
"postversion": "npm publish",
"prepublish": "npm run coveralls",
"postpublish": "git push",
"test": "jest",
"coveralls": "jest --coverage && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsigel/typed-ts-events.git"
},
"keywords": [
"typed",
"events",
"typescript",
"eventemitter"
],
"author": "tsddaniil@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/tsigel/typed-events/issues"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/*test.+(ts)"
]
},
"homepage": "https://github.com/tsigel/typed-events#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "^8.0.5",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}