forked from monteslu/wsrpc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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": "rawr",
"version": "0.17.0",
"description": "JSON-RPC over simple node style event emitters",
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"b64id": "^1.0.1",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"istanbul": "^0.4.5",
"mocha": "^10.2.0"
},
"main": "index.js",
"scripts": {
"lint": "eslint ./index.js --ext .js",
"test": "npm run lint && istanbul cover _mocha && npm run check-coverage",
"mocha": "_mocha",
"build": "browserify index.js -o dist/bundle.js",
"check-coverage": "istanbul check-coverage --statements 100 --branches 75 --lines 100 --functions 100",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/iceddev/rawr"
},
"keywords": [
"rpc",
"json-rpc",
"promises",
"websocket",
"ws",
"promise",
"mqtt"
],
"author": "Luis Montes <luis@iceddev.com> (http://iceddev.com/)",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/iceddev/rawr/issues"
}
}