-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.49 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.49 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
{
"name": "@instructure/inst-node-jwt",
"version": "5.7.0",
"description": "express JWT middleware",
"main": "lib/auth.js",
"files": [
"lib"
],
"nyc": {
"all": true,
"lines": 80,
"reporter": [
"lcov",
"text"
],
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
]
},
"scripts": {
"coverage:check": "cross-env NODE_ENV=test nyc check-coverage",
"coverage:run": "cross-env NODE_ENV=test nyc mocha 'test/**/*.js'",
"lint:check": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"build": "babel src -d lib",
"prepublishOnly": "yarn build",
"test": "NODE_ENV=test mocha 'test/**/*.js'"
},
"repository": {
"type": "git",
"url": "ssh://gerrit.instructure.com:29418/node-jwt"
},
"keywords": [
"node",
"express",
"jwt"
],
"author": "AppSVC",
"license": "ISC",
"dependencies": {
"consul": "^1.2.0",
"jsonwebtoken": "^9.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.0.2",
"cross-env": "^5.0.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-security": "^1.4.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"prettier": "^1.11.1",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"sinon-chai": "^2.11.0"
}
}