This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "express-stormpath",
"version": "4.0.0",
"description": "Build simple, secure web applications with Stormpath and Express!",
"keywords": [
"express",
"stormpath",
"authentication",
"api",
"service",
"users",
"accounts"
],
"scripts": {
"docs": "cd docs && rm -rf _build/html && make html",
"lint": "./node_modules/eslint/bin/eslint.js -c .eslintrc lib/** test/** --ignore-pattern **/*.yml --quiet",
"test": "npm run lint && istanbul cover ./node_modules/mocha/bin/_mocha --check-leaks --report html -- --reporter spec --recursive --growl --no-timeouts",
"test-travis": "npm run lint && istanbul cover ./node_modules/mocha/bin/_mocha --check-leaks --report lcovonly -- --reporter spec --recursive --no-timeouts"
},
"repository": "stormpath/express-stormpath",
"author": "Stormpath, Inc.",
"license": "Apache-2.0",
"main": "./index",
"dependencies": {
"async": "^2.0.1",
"body": "^5.1.0",
"bytes": "^2.2.0",
"cookie-parser": "^1.3.5",
"cookies": "^0.6.1",
"deep-extend": "^0.4.1",
"dot-object": "^1.5.4",
"express": "^4.13.4",
"forms": "^1.1.4",
"jade": "^1.11.0",
"jwk-to-pem": "^1.2.6",
"lodash": "^4.6.1",
"njwt": "^0.4.0",
"parse-iso-duration": "^1.0.0",
"psl": "^1.1.14",
"qs": "^6.0.2",
"request": "^2.63.0",
"stormpath": "stormpath/stormpath-sdk-node#1.0.0-rc5",
"stormpath-config": "stormpath/stormpath-node-config#okta",
"utils-merge": "^1.0.0",
"uuid": "^2.0.1",
"winston": "^2.1.1",
"xtend": "^4.0.1"
},
"devDependencies": {
"body-parser": "^1.17.2",
"cheerio": "^0.22.0",
"coveralls": "^2.11.2",
"eslint": "^2.13.1",
"istanbul": "^0.4.0",
"js-yaml": "^3.5.4",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.0.0",
"sinon": "^1.17.3",
"supertest": "^2.0.0",
"yargs": "^7.0.2"
}
}