-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
69
70
71
72
73
74
75
76
77
{
"name": "pubchan",
"version": "1.13.6",
"description": "Simple, powerful, and blazing fast pub/sub channels with middleware",
"main": "lib/index.js",
"author": "odo",
"license": "MIT",
"reveal": true,
"files": [
"lib",
"registry",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/odo-network/pubchan/"
},
"keywords": [
"pubsub",
"flow",
"js",
"typescript",
"channels",
"one-to-many",
"emitter",
"event-emitter",
"events",
"flow-type",
"publish",
"subscribe",
"pubsub",
"subscription",
"promise",
"coordinator",
"flow-typed"
],
"scripts": {
"flow": "flow",
"build": "cross-env NODE_ENV=production rimraf lib registry middleware && npm-run-all -p build:**",
"build:pubchan:babel": "babel src/lib --out-dir lib",
"build:registry:babel": "babel src/registry --out-dir registry",
"build:middleware:babel": "babel src/middleware --out-dir middleware",
"build:pubchan:flow": "flow-copy-source src/lib lib",
"build:registry:flow": "flow-copy-source src/registry registry",
"build:middleware:flow": "flow-copy-source src/middleware middleware",
"try": "babel-node ./test.js",
"prepublishOnly": "npm-run-all build"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.86.0",
"flow-copy-source": "^2.0.2",
"npm-run-all": "^4.1.3",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"pubchan": "^1.10.1",
"rimraf": "^2.6.2",
"wildcard-utils": "^2.2.3"
},
"peerDependencies": {
"wildcard-utils": "^2.2.3"
}
}