-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 KB
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
{
"name": "emitix",
"version": "2.3.2",
"description": "High performance, modern, lightweight, and typesafe EventEmitter.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"!.DS_Store"
],
"devDependencies": {
"typescript": "^4.5.3",
"gulp": "4.0.2",
"gulp-optimize-js": "1.1.0",
"gulp-terser": "1.2.0",
"gulp-typescript": "^5.0.1",
"del": "^5.1.0",
"ts-node": "^8.0.3",
"mocha": "7.0.1",
"nyc": "^15.1.0",
"chai": "^4.2.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^7.0.2",
"sinon": "^9.2.1",
"@types/sinon": "^9.0.9",
"chai-as-promised": "^7.1.1",
"@types/chai-as-promised": "^7.1.3"
},
"scripts": {
"build": "gulp build",
"prepublishOnly": "npm run build",
"test": "nyc --reporter=html --reporter=text mocha --exit -r ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/LucaCode/emitix.git"
},
"author": {
"name": "Ing. Luca Gian Scaringella",
"email": "lucacode1@gmail.com"
},
"bugs": {
"url": "https://github.com/LucaCode/emitix/issues"
},
"homepage": "https://github.com/LucaCode/emitix#readme",
"keywords": [
"event emitter",
"events",
"typed",
"modern",
"promise",
"fast",
"lightweight",
"emitter",
"emitix",
"listener",
"performance",
"powerful"
]
}