-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "@connectedcars/jwtutils",
"version": "2.0.3",
"description": "Zero dependency JWT encoding/decoding for Node",
"main": "src/index.js",
"typings": "types/@connectedcars/jwtutils/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"bin": {
"jwtencode": "./bin/jwtencode.js",
"jwtdecode": "./bin/jwtdecode.js"
},
"scripts": {
"test": "mocha \"src/**/*.test.js\" \"bin/*.test.js\"",
"cov": "nyc --reporter=lcov --reporter=text npm test",
"coveralls": "nyc report --reporter=text-lcov npm test | coveralls",
"lint": "npm run eslint && npm run dtslint",
"dtslint": "dtslint types",
"eslint": "eslint --ignore-pattern=\"**/*.test.js\" src/**/*.js bin/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connectedcars/node-jwtutils.git"
},
"keywords": [
"jwt"
],
"author": "Connected Cars <oss@connectedcars.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/connectedcars/node-jwtutils/issues"
},
"homepage": "https://github.com/connectedcars/node-jwtutils#readme",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.10",
"@types/tmp": "0.1.0",
"babel-eslint": "^10.0.3",
"benchmark": "^2.1.4",
"coveralls": "^3.0.6",
"dtslint": "^0.9.8",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"microtime": "^3.0.0",
"mocha": "^8.0.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"r2": "^2.0.1",
"tmp": "0.1.0",
"typescript": "^3.6.3",
"unexpected": "^11.8.0"
},
"nyc": {
"include": [
"src/**",
"bin/**"
],
"exclude": [
"**/*.test.js"
],
"all": true
}
}