-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "refract",
"version": "0.0.1",
"description": "",
"repository": "https://github.com/jmanero/refract.git",
"homepage": "https://jmanero.github.io/refract/",
"main": "index.js",
"scripts": {
"test": "mocha",
"cover": "rm -Rf docs/coverage && istanbul cover _mocha",
"doc": "rm -rf docs/jsdoc && jsdoc -c .jsdoc.json lib",
"lint": "eslint lib/*.js lib/**/*.js bin/* test/*.js",
"report": "coveralls < ./docs/coverage/lcov.info",
"site": "bundle install && cd docs && bundle exec jekyll serve",
"clean": "rm -rf docs/jsdoc docs/coverage docs/_site docs/.sass-cache"
},
"keywords": [
"rpc",
"pirates",
"pirate-code",
"guidelines",
"json-rpc"
],
"author": "John Manero <john.manero@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.9.1",
"eslint-config-rapid7": "^2.6.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.6.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.1.2"
},
"dependencies": {
"aws-sdk": "^2.7.0",
"express": "^4.14.0",
"hiredis": "^0.5.0",
"node-libuuid": "^2.0.0",
"pirate-rpc": "^0.1.0",
"redis": "^2.6.3",
"ws": "^1.1.1"
}
}