-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 863 Bytes
/
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
{
"name": "typeevent",
"version": "1.0.5",
"author": "Rizumu <464388324@qq.com>",
"license": "MIT",
"description": "A typed event system, based on the TypeScript language and the es6 addition of Proxy",
"keywords": [
"event",
"typescript",
"proxy",
"event-emitter",
"typedesign"
],
"homepage": "https://github.com/LittleSound/typeevent#readme",
"bugs": "https://github.com/LittleSound/typeevent/issues",
"repository": {
"type": "git",
"url": "https://github.com/LittleSound/typeevent"
},
"scripts": {
"test": "jest",
"build": "rm -rf ./lib && tsc"
},
"main": "./lib/EventControl.js",
"files": [
"/lib/"
],
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"dependencies": {
"ts-node": "^10.2.1"
}
}