-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.57 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
{
"name": "@phara0h/travelling",
"version": "4.1.0",
"description": "A dynamic route level groups permissions middleman service",
"main": "index.js",
"scripts": {
"pretest": "npm run sdk",
"test": "TRAVELLING_ENV=.testENV jest --coverage --verbose --forceExit --detectOpenHandles",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"start": "node index.js",
"debug": "node --inspect-brk index.js",
"sdk": "sh sdk/gen-sdk.sh && npm run docs",
"docs": "jsdoc2md sdk/node/index.js > sdk/README.md",
"version": "auto-changelog -l false --sort-commits date-desc --package --hide-credit --template changelog-template.hbs -p && mdsquash -t documents/INTRO.md -i documents/CONFIG.md,sdk/README.md,CHANGELOG.md,LICENSE -o README.md && git add -A CHANGELOG.md && git add -A README.md",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phara0h/travelling.git"
},
"keywords": [
"dynamic",
"route",
"permissions",
"rest",
"groups",
"gateway",
"api"
],
"bin": {
"travelling": "./index.js",
"traveling": "./index.js"
},
"author": "Jt Whissel",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/phara0h/travelling/issues"
},
"homepage": "https://github.com/phara0h/travelling#readme",
"dependencies": {
"@opentelemetry/api": "^1.0.3",
"@opentelemetry/core": "^0.26.0",
"@opentelemetry/instrumentation": "^0.26.0",
"@opentelemetry/instrumentation-http": "^0.26.0",
"@opentelemetry/sdk-trace-base": "^0.26.0",
"@opentelemetry/sdk-trace-node": "^0.26.0",
"adost": "^2.0.0",
"aws-sdk": "^2.516.0",
"dotenv": "^8.2.0",
"fasquest": "^3.1.3",
"fast-proxy": "^1.0.0",
"fastify": "^3.11.0",
"fastify-cookie": "^5.1.0",
"fastify-favicon": "^3.0.0",
"fastify-good-sessions": "^1.4.4",
"fastify-jaeger": "^1.0.1",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.7.0",
"handlebars": "^4.7.3",
"http-proxy": "^1.17.0",
"ioredis": "^4.14.1",
"nodemailer": "^6.3.0",
"nstats": "4.2.0",
"wog": "latest",
"zcs": "^2.4.0"
},
"devDependencies": {
"@abeai/recho": "^1.4.0",
"auto-changelog": "^2.2.0",
"cookie": "^0.4.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"jest-junit": "^11.0.1",
"jsdoc-to-markdown": "^8.0.0",
"mdsquash": "^1.0.6",
"postgen": "^5.0.4",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0"
}
}