-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.06 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
62
63
64
65
66
67
68
69
{
"name": "jsms",
"version": "1.0.16",
"description": "A JavaScript Messaging Framework",
"scripts": {
"test": "jest --collect-coverage",
"build": "npm run clean && npm run compile && npm run lint && npm run test && npm run prepare-dist",
"clean": "rimraf ./dist/**/*",
"compile": "tsc",
"doc": "rimraf ./doc && typedoc --exclude \"+(node_modules|test|index.d.ts)\" --excludeNotExported --excludePrivate --excludeProtected --module commonjs --target ES6 --out ./doc .",
"prepare-dist": "npm run rollup && rimraf ./dist/test && rimraf ./dist/src/**/*.js && move-cli ./dist/src/ ./dist/types/ && cp-cli index.d.ts ./dist/index.d.ts ",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"rollup": "rollup -c",
"tsc": "tsc",
"tslint": "tslint",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rfruesmer/jsms.git"
},
"keywords": [
"event bus",
"mediator",
"messaging",
"message service",
"message queue",
"publish",
"subscribe"
],
"author": "Reinhold Früsmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/rfruesmer/jsms/issues"
},
"homepage": "https://github.com/rfruesmer/jsms#readme",
"devDependencies": {
"@types/jest": "^26.0.12",
"@types/uuid": "^8.3.0",
"cp-cli": "^2.0.0",
"jest": "^26.4.2",
"log4js": "^6.3.0",
"minimist": "^1.2.5",
"move-cli": "^1.2.1",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"ts-jest": "^26.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@log4js-node/log4js-api": "^1.0.2",
"uuid": "^8.3.0"
},
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js"
}