-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "octobus.js",
"version": "1.1.1",
"description": "An event dispatcher aimed for AOP.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --watch --coverage",
"prebuild": "rimraf dist",
"build": "babel src --copy-files --out-dir dist",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/viczam/octobus"
},
"keywords": ["AOP", "event bus", "event dispatcher", "EventEmitter", "microservices"],
"files": ["dist", "src", "README.md"],
"author": "Victor Zamfir <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/viczam/octobus/issues"
},
"homepage": "https://github.com/viczam/octobus#readme",
"dependencies": {
"babel-runtime": "^6.6.1",
"joi": "^8.0.5",
"lodash": "^4.11.1",
"uuid": "3.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.6",
"babel-eslint": "5.0.0",
"babel-jest": "15.0.0",
"babel-plugin-transform-async-to-generator": "6.7.4",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.6.5",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.0",
"estraverse-fb": "1.3.1",
"jest-cli": "15.1.0",
"rimraf": "2.5.2",
"semantic-release": "^4.3.5"
},
"babel": {
"presets": ["es2015", "stage-0"],
"plugins": [
"transform-object-rest-spread",
"transform-async-to-generator",
"transform-runtime",
"transform-decorators-legacy"
]
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": ["src/*.js"]
}
}