-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
{
"name": "@leisurelink/trusted-client",
"version": "3.2.0",
"description": "Nodejs module implementing trusted client over http requests.",
"main": "build/index.js",
"scripts": {
"test": "mocha tests --recursive --compilers js:babel-core/register --timeout 5000",
"build": "babel src -d build -s inline",
"build:watch": "babel src -d build -s inline --watch",
"clean": "rm -rf build",
"lint": "esw --quiet",
"lint:watch": "esw --quiet --watch",
"prepublish": "npm run clean; npm run build",
"coverage": "NODE_ENV=${NODE_ENV:-local} node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- tests --recursive",
"ci": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/LeisureLink/trusted-client"
},
"author": "Phillip Clark <phillip@flitbit.com>",
"contributors": [
{
"name": "Phillip Clark",
"email": "phillip@flitbit.com"
},
{
"name": "Eli Mumford",
"email": "elimumford@gmail.com"
},
{
"name": "Tyler Garlick",
"email": "tjgarlick@gmail.com"
},
{
"name": "Jesse Hansen",
"email": "twindagger@gmail.com"
}
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"@leisurelink/domain-correlation": "^1.1",
"@leisurelink/http-equiv-errors": "^0.1.5",
"@leisurelink/skinny-event-loggins": "^1.0.0",
"bluebird": "^3.3.5",
"deep-extend": "^0.4.1",
"http-signature": "^1.1.1",
"joi": "^8.1.0",
"jsonwebtoken": "~6.2.0",
"lodash": "^4.12.0",
"request": "2.72.0",
"uri-template": "^1.0.0"
},
"devDependencies": {
"@leisurelink/skinny-loggins": "^1.2.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-istanbul": "^0.8.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-destructuring": "^6.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.5.2",
"babel-preset-async-to-bluebird": "^1.0.0",
"babel-preset-es2015-node4": "^2.0.3",
"babel-preset-stage-3": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"eslint-config-leisurelink": "^1.0.2",
"eslint-watch": "^2.1.8",
"jwt-simple": "^0.5.0",
"mocha": "^2.4.5"
}
}