-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.33 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "oseventlistener",
"description": "A simple modern a strong typed javascript library to subscribe, manage and dispatch events",
"author": {
"name": "Stefano Balzarotti",
"email": "stefano.balzarotti@orbintsoft.net"
},
"license": "BSD-3-Clause",
"version": "1.0.6",
"repository": {
"type": "git",
"url": "git+https://github.com/OrbintSoft/OSEventListener.git"
},
"bugs": {
"email": "stefano.balzarotti@orbintsoft.net",
"url": "https://github.com/OrbintSoft/OSEventListener/issues"
},
"type": "commonjs",
"types": "./main/index.d.ts",
"main": "./main/index.cjs",
"keywords": [
"event",
"listener",
"simple",
"dispatch",
"events",
"emitter",
"dispatcher",
"subscribe",
"priority"
],
"scripts": {
"lint": "gulp lint",
"clean": "gulp clean",
"compile": "gulp compile",
"server": "gulp startSampleServer",
"test": "gulp test",
"coverage": "gulp coverage",
"deploy": "gulp deploy"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.22.0",
"eslint-plugin-jsdoc": "^39.3.6",
"fs-extra": "^10.1.0",
"glob-promise": "^5.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"http-server": "^14.1.1",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"mochawesome": "^7.1.3",
"npm-cli-login": "^1.0.0",
"nyc": "^15.1.0",
"package-info": "^4.1.4",
"rollup": "^2.78.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"semver": "^7.3.7",
"terser": "^5.14.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"exports": {
"types": "./main/index.d.ts",
"import": "./main/index.mjs",
"require": "./main/index.cjs"
}
}