-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.09 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "passport-http-encrypted-token",
"version": "1.2.1",
"description": "HTTP Encrypted Token authentication strategy for Passport and Node.j",
"main": "lib/index.js",
"scripts": {
"compile": "rimraf lib && babel -d lib/ src/",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"lint": "standard \"src/**/*.js\" \"test/**/*.js\"",
"prepublish": "npm run compile",
"test": "npm run lint && npm run test:cover",
"test:ci": "npm test",
"test:cover": "cross-env NODE_ENV=test nyc mocha",
"test:watch": "mocha -G -w -t 200"
},
"dependencies": {
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^7.0.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-passport-strategy": "^1.0.0",
"coveralls": "^2.11.14",
"cross-env": "^3.0.0",
"mocha": "^3.1.0",
"nyc": "^8.3.0",
"rimraf": "^2.5.3",
"standard": "^8.1.0"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"exclude": [
"test/**/*",
"lib/**/*"
],
"reporter": [
"html",
"lcov"
],
"check-coverage": true,
"statements": 100,
"branches": 90,
"functions": 100,
"lines": 100,
"cache": true,
"all": true
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"beforeEach",
"afterEach",
"before",
"after"
]
},
"engines": {
"node": ">=4.4.0",
"npm": ">=3"
},
"repository": {
"type": "git",
"url": "https://github.com/dowjones/passport-http-encrypted-token.git"
},
"keywords": [
"authentication",
"bearer",
"encrypted",
"token"
],
"files": [
"lib"
],
"author": "Hrusikesh Panda <[email protected]>",
"license": "ISC"
}