-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "zenfuse-sdk",
"version": "0.0.1",
"description": "Zenfuse services SDK on JavaScript",
"main": "src/index.js",
"scripts": {
"format": "eslint --fix .; prettier --write .",
"lint": "eslint . "
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenfuse/zenfuse-sdk.git"
},
"author": "zenfuse.io",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"bugs": {
"url": "https://github.com/zenfuse/zenfuse-sdk/issues"
},
"homepage": "https://zenfuse.js",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"jest": "^27.5.1",
"nock": "^13.2.4",
"prettier": "^2.5.1"
},
"dependencies": {
"@bit/flake.flake-ui.src.functions.utils.string-case-utils": "^1.0.9",
"axios": "^0.25.0",
"dotenv": "^16.0.0",
"qs": "^6.10.3",
"ramda": "^0.28.0",
"ws": "^8.5.0"
},
"wallaby": {
"maxConsoleMessagesPerTest": 100000
}
}