forked from laardee/serverless-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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": "serverless-authentication",
"version": "0.4.5",
"main": "lib/index.js",
"license": "MIT",
"private": false,
"author": "Eetu Tuomala <eetu.tuomala@sc5.io>",
"repository": {
"type": "git",
"url": "https://github.com/laardee/serverless-authentication"
},
"keywords": [
"serverless",
"aws",
"oauth",
"lambda"
],
"dependencies": {
"async": "^1.5.2",
"bluebird": "^3.4.6",
"decamelize": "^1.2.0",
"jsonwebtoken": "^5.7.0",
"request": "^2.69.0"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "^4.3.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"lodash": "^4.6.0",
"mocha": "^2.4.5",
"nock": "^7.7.2"
},
"scripts": {
"compile": "rm -rf lib/* && ./node_modules/.bin/babel src --out-dir lib",
"prepublish": "npm run compile-test",
"test": "./node_modules/.bin/mocha specs/",
"compile-test": "npm run compile && npm test",
"lint": "eslint ./src ./specs || true"
}
}