-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "@mark48evo/system-state",
"version": "1.2.0",
"description": "A library for sharing system wide state",
"author": "Aurimas Niekis <aurimas@niekis.lt> (https://github.com/Mark48Evo)",
"license": "MIT",
"repository": "Mark48Evo/system-state",
"contributors": [
{
"name": "Aurimas Niekis",
"email": "aurimas@niekis.lt"
}
],
"module": "src/index.js",
"main": "dist/index.js",
"scripts": {
"rollup": "rollup -c rollup.config.js",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix"
},
"files": [
"src/",
"dist/",
"LICENSE",
"README.md"
],
"dependencies": {
"@mark48evo/rabbitmq-pubsub": "^1.1.1",
"debug": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/node": "^7.0.0-beta.51",
"@babel/plugin-external-helpers": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"rollup": "^0.61.2",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-eslint": "^4.0.0"
}
}