-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "hertzy",
"version": "0.1.1",
"description": "Event bus channel",
"main": "index.js",
"keywords": [
"events",
"mediator",
"eventbus",
"decoupling"
],
"scripts": {
"test": "npm run lint && node ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__test__/jasmine.json",
"test-travis": "npm run lint && node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__test__/jasmine.json",
"test-appveyor": "npm run lint && node ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__test__/jasmine.json",
"lint": "./node_modules/.bin/eslint index.js ./lib"
},
"engines": {
"node": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickNaso/hertzy.git"
},
"author": "Nicola Del Gobbo <nicoladelgobbo@gmail.com>",
"contributors": [
{
"name": "Nicola Del Gobbo",
"email": "nicoladelgobbo@gmail.com"
},
{
"name": "Mauro Doganieri",
"email": "mauro.doganieri@gmail.com"
},
{
"name": "Pierluigi Iannarelli",
"email": "pierluigi.iannarelli@gmail.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NickNaso/hertzy/issues"
},
"homepage": "https://github.com/NickNaso/hertzy#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"jasmine": "^2.8.0"
}
}