-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "light-event-bus",
"version": "1.0.1",
"description": "Lightweight event bus for node and the browser.",
"main": "build/light-event-bus.min.js",
"scripts": {
"lint": "eslint src tests",
"test": "nyc --reporter=html --reporter=text mocha ./tests/*_test.js --require @babel/register",
"report-coverage": "nyc report --reporter=text-lcov | codecov",
"prebuild": "rimraf build",
"build:babel": "babel --out-dir build src",
"build:release": "npm run lint && rollup -c && rollup -c rollup.config.minify.js"
},
"author": "Pierfrancesco Soffritti <[email protected]> (https://pierfrancescosoffritti.com/)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/node": "7.4.5",
"@babel/preset-env": "7.4.5",
"@babel/register": "7.4.4",
"chai": "4.2.0",
"codecov.io": "0.1.6",
"eslint": "6.0.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.18.0",
"ghooks": "2.0.4",
"mocha": "6.1.4",
"nyc": "14.1.1",
"rimraf": "2.6.3",
"rollup": "1.16.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-babel-minify": "9.0.0",
"sinon": "7.3.2"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/PierfrancescoSoffritti/light-event-bus.js.git"
},
"bugs": {
"url": "https://github.com/PierfrancescoSoffritti/light-event-bus.js/issues"
},
"homepage": "https://github.com/PierfrancescoSoffritti/light-event-bus.js#readme",
"keywords": [
"eventbus",
"lightweight",
"event-bus",
"event",
"bus",
"pubsub"
],
"files": [
"build/light-event-bus.min.js",
"README.md",
"LICENSE"
]
}