forked from adonisjs/auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 KB
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
{
"name": "adonis-auth",
"version": "1.0.4",
"description": "Offical authentication provider for Adonis framework",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node --harmony_proxies ./node_modules/.bin/istanbul cover _mocha -x providers/*.js --report lcovonly -- -R spec test/unit test/unit/authenticators test/unit/serializer test/integration && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "standard src/**/*.js src/**/**/*.js test/**/*.js test/**/**/*.js providers/*.js util/*.js middleware/*.js commands/*.js",
"coverage": "node --harmony_proxies ./node_modules/.bin/istanbul cover _mocha test/unit test/unit/serializer test/unit/authenticators test/integration -x providers/*.js"
},
"keywords": [
"adonis",
"adonis-framework",
"adonis-auth",
"authentication"
],
"author": "adonisjs",
"license": "MIT",
"devDependencies": {
"adonis-fold": "^3.0.3",
"chai": "^3.5.0",
"co": "^4.6.0",
"co-mocha": "^1.1.3",
"coveralls": "^2.11.8",
"cz-conventional-changelog": "^1.1.5",
"istanbul": "^0.4.2",
"mocha": "^3.0.2",
"shelljs": "^0.7.4",
"sinon-es6": "0.0.3",
"standard": "^8.0.0",
"supertest": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"basic-auth": "^1.0.4",
"cat-log": "^1.0.2",
"co-functional": "^0.2.1",
"harmony-reflect": "^1.5.0",
"jsonwebtoken": "^5.7.0",
"ms": "^0.7.1",
"node-exceptions": "^1.0.3",
"node-uuid": "^1.4.7"
}
}