-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1000 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": "@likun./pubsub",
"version": "1.0.1",
"description": "A lib for publish-subscribe design pattern.",
"keywords": [
"pubsub",
"publish-subscribe",
"events",
"emit",
"design pattern"
],
"main": "dist/index.min.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "webpack --env prod --config webpack.config.js --progress",
"build:dev": "webpack --config webpack.config.js --progress",
"lint": "eslint ./src --ext .ts,.js",
"lint:fix": "eslint ./src --ext .ts,.js --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/likuner/PubSub.git"
},
"author": "Hunter",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}