-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "pragmatic-core",
"version": "0.0.12",
"description": "Simple framework to kickstart your application in a pragmatic and loosely coupled way. This project is still 'work in progress', expect breaking changes!",
"author": "Dominik Blatzheim",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PragmaticBeaver/pragmatic-core"
},
"keywords": [
"pragmatic",
"framework",
"loosely coupled",
"plugin",
"event",
"event bus",
"chain",
"chain of responsibility"
],
"main": "./dist/pragmatic-core.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn run clean && tsc",
"clean": "rimraf ./dist/",
"start": "yarn run build && node dist/main.js",
"test": "jest",
"prepublish": "yarn run clean && webpack"
},
"dependencies": {
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.0.27",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
}
}