-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "auth-service",
"version": "2.0.0",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GolosChain/auth-service.git"
},
"author": "golos.io",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/GolosChain/auth-service/issues"
},
"homepage": "https://github.com/GolosChain/auth-service#readme",
"description": "**Auth service** является сервисом для авторизации запросов к [golos.io](https://golos.io). Для работы сервису необходим совместимый фасад-сервис, осуществляющий конечное общение с системой.",
"dependencies": {
"cyberwayjs": "^20.0.0-beta7",
"eosjs-ecc": "^4.0.4",
"gls-core-service": "^3.42.1",
"node-fetch": "^2.3.0",
"randomstring": "^1.1.5"
},
"devDependencies": {},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"semi": true,
"trailingComma": "es5",
"printWidth": 100,
"overrides": [
{
"files": [
"*.yml",
"*.json"
],
"options": {
"tabWidth": 2
}
}
]
}
}