-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.44 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.44 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "authone-jwt-verifier-node",
"description": "Node.js middleware for auth1",
"version": "1.1.1",
"author": "Evgeniy Strigo <evgeniy.strigo@protocol.one>",
"ava": {
"failFast": true,
"verbose": true
},
"bugs": {
"url": "https://github.com/ProtocolONE/authone-jwt-verifier-node/issues",
"email": "evgeniy.strigo@protocol.one"
},
"contributors": [
"Evgeniy Strigo <evgeniy.strigo@protocol.one>"
],
"dependencies": {
"axios": "^0.19.0",
"lru-cache": "^5.1.1",
"querystring": "^0.2.0",
"string-template": "^1.0.0"
},
"devDependencies": {
"ava": "latest",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"codecov": "latest",
"cross-env": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-standard": "latest",
"fixpack": "latest",
"husky": "latest",
"install": "^0.12.2",
"ioredis": "^4.6.2",
"lint-staged": "latest",
"mock-http-server": "^1.2.0",
"npm": "^6.9.0",
"nyc": "^14.1.1",
"prettier": "latest",
"remark-cli": "latest",
"remark-preset-github": "latest",
"standard": "latest"
},
"engines": {
"node": ">=8.3"
},
"homepage": "https://github.com/ProtocolONE/authone-jwt-verifier-node",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"keywords": [
"authone-jwt-verifier-node"
],
"license": "MIT",
"lint-staged": {
"linters": {
"*.js": [
"standard --fix",
"git add"
],
"*.md": [
"remark . -qfo",
"git add"
],
"package.json": [
"fixpack",
"git add"
]
}
},
"main": "index.js",
"nyc": {
"check-coverage": true,
"lines": 80,
"functions": 80,
"branches": 80,
"reporter": [
"lcov",
"html",
"text"
]
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ProtocolONE/authone-jwt-verifier-node"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava -s",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"format": "standard --fix",
"lint": "standard && remark . -qfo",
"nyc": "cross-env NODE_ENV=test nyc ava -s",
"postcommit": "git update-index --again",
"precommit": "lint-staged",
"test": "npm run lint && npm run ava -s",
"test-coverage": "npm run lint && npm run nyc"
}
}