-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.45 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
{
"name": "@jitesoft/events",
"description": "A simple cross-env event handler with custom events.",
"main": "dist/index.js",
"version": "0.0.0",
"readmeFilename": "README.md",
"public": true,
"license": "MIT",
"author": {
"url": "https://jitesoft.com",
"email": "[email protected]",
"name": "Johannes Tegnér"
},
"scripts": {
"test": "jest",
"lint": "eslint",
"build:prod": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack"
},
"esnext": "src/index.js",
"types": "events.d.ts",
"repository": {
"type": "git",
"url": "https://gitlab.com/jitesoft/open-source/javascript/events"
},
"bugs": {
"url": "https://gitlab.com/jitesoft/open-source/javascript/events/issues"
},
"keywords": [
"events",
"eventhandler",
"listener",
"subscriber",
"jitesoft",
"node",
"async",
"browser"
],
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
]
},
"dependencies": {
"@babel/runtime-corejs3": "^7.24.1"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@jitesoft/babel-preset-main": "^5.4.0",
"@jitesoft/eslint-config": "^4.2.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}