forked from alveflo/tsmediator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 984 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
38
39
40
{
"name": "tsmediator",
"version": "0.1.5",
"description": "Tiny flexible mediator implemented in TypeScript",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "tslint -t stylish './src/**/*.ts'",
"test": "mocha",
"build": "cd ./src && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alveflo/tsmediator.git"
},
"keywords": [
"mediator",
"typescript"
],
"author": "Victor Alveflo",
"license": "MIT",
"bugs": {
"url": "https://github.com/alveflo/tsmediator/issues"
},
"homepage": "https://github.com/alveflo/tsmediator#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^7.0.8",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"source-map-support": "^0.4.14",
"ts-node": "^8.0.2",
"tslint": "^4.5.1",
"typescript": "^3.0.3"
}
}