forked from cerner/jsonrpc-dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "jsonrpc-dispatch",
"version": "2.2.0",
"description": "An unopinionated JSONRPC dispatcher for JavaScript",
"main": "lib/src/index.js",
"scripts": {
"build": "npm run clean && npm run test && npm run lint-js && npm run build-es5",
"build-es5": "babel src --out-dir lib/src",
"clean": "rm -rf dist lib",
"test": "npm run lint-js && mocha --compilers js:babel-core/register test",
"lint-js": "eslint src/* test/*",
"prepublish": "npm run build"
},
"keywords": [
"JSONRPC",
"Cerner"
],
"files": [
"lib"
],
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.1",
"babel-preset-es2015": "^6.6.0",
"chai": "3.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"mocha": "2.4.5"
},
"dependencies": {
"uuid": "^3.0.0"
},
"engines": {
"node": ">= 6.0"
},
"author": "Cerner Corporation",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cerner/jsonrpc-dispatch.git"
}
}