-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "rxremote",
"version": "0.0.13",
"description": "Subscribe to observables on remote servers",
"main": "index.js",
"scripts": {
"compile": "./node_modules/.bin/babel -d lib/ src/",
"test": "npm run compile && ./node_modules/.bin/mocha --compilers js:babel-core/register --allow-natives-syntax",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+git@github.com:jbaudanza/rxremote.git"
},
"keywords": [
"rxjs",
"websocket"
],
"author": "Jonathan Baudanza <jon@jonb.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbaudanza/rxremote/issues"
},
"homepage": "https://github.com/jbaudanza/rxremote/#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-3": "^6.5.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^3.1.2",
"v8-natives": "^0.0.3"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"fetch-ponyfill": "^3.0.2",
"jsonwebtoken": "^7.1.9",
"rxjs": "^5.0.0",
"uuid": "^3.0.0",
"ws": "^1.1.1"
}
}