forked from NebulousLabs/nodejs-skynet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 948 Bytes
/
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
{
"name": "@nebulous/skynet",
"version": "2.0.1",
"description": "Skynet SDK",
"repository": "https://github.com/NebulousLabs/nodejs-skynet",
"main": "index.js",
"scripts": {
"test": "jest",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": [
"prettier --write"
]
},
"keywords": [
"Decentralised",
"Cloud Storage",
"Sia"
],
"author": "Peter-Jan Brone",
"contributors": [
{
"name": "Kunal Kamble",
"email": "[email protected]",
"url": "https://kunalkamble.com"
}
],
"license": "MIT",
"dependencies": {
"axios": "0.21.0",
"form-data": "3.0.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"eslint": "^7.2.0",
"jest": "^26.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.0.5",
"tmp": "0.2.1"
}
}