forked from stormpath/express-stormpath
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "express-stormpath",
"version": "3.2.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",
"express": "^4.13.4",
"forms": "^1.1.4",
"jade": "^1.11.0",
"lodash": "^4.6.1",
"njwt": "^0.3.1",
"parse-iso-duration": "^1.0.0",
"psl": "^1.1.14",
"qs": "^6.0.2",
"request": "^2.63.0",
"stormpath": "0.20.x",
"stormpath-config": "0.0.27",
"utils-merge": "^1.0.0",
"uuid": "^2.0.1",
"winston": "^2.1.1",
"xtend": "^4.0.1"
},
"devDependencies": {
"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"
}
}