-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 3.15 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "node-red-contrib-iiot-jwt",
"version": "1.1.0",
"private": false,
"description": "The IIoT JSON Web Token (JWT) package for Node-RED.",
"repository": {
"type": "git",
"url": "git+https://github.com/BiancoRoyal/node-red-contrib-iiot-jwt.git"
},
"dependencies": {
"debug": "~4.3.4",
"jsonwebtoken": "~8.5.1",
"bson": "~4.6.5",
"underscore": "~1.13.4"
},
"keywords": [
"node-red",
"jwt",
"webtoken",
"iiot",
"biancoroyal"
],
"author": "Bianco Royal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BiancoRoyal/node-red-contrib-iiot-jwt/issues"
},
"node-red": {
"version": ">=2",
"nodes": {
"JWT-In": "jwt/jwt-in.js",
"JWT-Out": "jwt/jwt-out.js"
}
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/BiancoRoyal/node-red-contrib-iiot-jwt#readme",
"scripts": {
"test": "standard --fix && jest --verbose --debug",
"test:coverage": "jest --coverage",
"test:ci": "standard --fix && jest --verbose --detectOpenHandles --forceExit --logHeapUsage --ci --debug",
"test:clearCache": "gulp clean && jest --clearCache",
"coverage": "standard --fix && jest --coverage --verbose --debug",
"coverage:ci": "standard --fix && jest --coverage --verbose --detectOpenHandles --forceExit --logHeapUsage --ci --debug",
"coverage:upload": "cat ./jcoverage/lcov.info | codacy-coverage --token c33a8fff146d49558e0e92ea385fa512",
"build": "standard --fix && gulp publish",
"prepublishOnly": "npm test && npm run coverage && npm run build",
"ci-publish": "ci-publish",
"release": "standard-version -a",
"rewrite-changelog": "gulp changelog",
"dev-link": "npm i && npm run build && npm link",
"dev-unlink": "npm unlink node-red-contrib-iiot-jwt -g"
},
"files": [
"docs",
"examples",
"jwt"
],
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@node-red/nodes": "^3.0.1",
"@types/cron": "^2.0.0",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.6",
"@types/node-red": "^1.2.1",
"chai": "^4.3.6",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-htmlmin": "^5.0.1",
"gulp-jsdoc3": "^3.0.0",
"gulp-replace": "^1.1.3",
"gulp-sequence": "^1.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"jest": "^28.1.3",
"jest-coverage-badges": "^1.1.2",
"jsdoc": "^3.6.10",
"nock": "^13.2.8",
"node-red": "^3.0.1",
"node-red-node-test-helper": "^0.3.0",
"pump": "^3.0.0",
"standard": "^17.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.6",
"typescript": "^4.7.4",
"uglify-js": "^3.16.2",
"when": "^3.7.8"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"node_modules/",
"code/",
"examples/",
"jwt/",
"docs",
"src/public/",
"test"
]
},
"main": "index.js"
}