forked from erickjth/simple-command-bus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "simple-command-bus",
"version": "1.0.7",
"description": "Simple Command Bus",
"main": "lib/index.js",
"scripts": {
"build": "babel src/ -d lib/",
"build:watch": "babel --watch src/ -d lib/",
"typecheck": "flow check",
"test": "mocha --recursive --require @babel/register",
"test:coverage": "nyc --reporter=html --reporter=text mocha --recursive --require @babel/register",
"report:coverage": "nyc --reporter=text --reporter=text-lcov mocha --recursive --require @babel/register > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erickjth/simple-command-bus.git"
},
"keywords": [
"bus",
"command-bus",
"command",
"handlers"
],
"author": "Erick Torres <ericktorresh@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erickjth/simple-command-bus/issues"
},
"homepage": "https://github.com/erickjth/simple-command-bus",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"chai": "^4.1.2",
"codecov": "^3.0.1",
"eslint-config-airbnb-standard": "^3.0.1",
"flow-bin": "^0.70.0",
"mocha": "^5.1.1",
"mock-require": "^3.0.2",
"nyc": "^13.3.0",
"sinon": "^5.0.1"
},
"dependencies": {
"lodash": "^4.17.5"
}
}