-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "celsius-sdk",
"version": "1.0.0",
"author": {
"name": "Celsius Network",
"email": "",
"url": "https://celsius.network/"
},
"homepage": "https://celsius.network",
"typings": "./index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/CelsiusNetwork/celsius-js-sdk"
},
"bugs": {
"url": "https://github.com/CelsiusNetwork/celsius-js-sdk/issues",
"mail": ""
},
"main": "./index.js",
"scripts": {
"eslint ": "eslint lib/*",
"jsdoc": "jsdoc -r -c ./docs/jsdoc/config.json",
"swagger": "",
"test": "echo Passed;"
},
"dependencies": {
"axios": "^0.21.1",
"form-data": "^2.3.3"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"pre-commit": "^1.2.2",
"jsdoc": "^3.5.5",
"mocha": "^6.0.2",
"chai": "^4.2.0"
}
}