-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1007 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
{
"name": "sputnikdao",
"version": "0.2.0",
"description": "Sputnik DAO CLI",
"main": "dist/sputnikdao-util.js",
"bin": "dist/sputnikdao-util.js",
"type": "commonjs",
"scripts": {
"build": "tsc -b -verbose",
"lint": "eslint src",
"test": "echo \"No test specified\""
},
"keywords": [
"near",
"nearprotocol",
"blockchain",
"meta-pool",
"staking"
],
"author": "Alan Estrada | CloudMex Analytics",
"license": "ISC",
"dependencies": {
"bn.js": "^5.2.0",
"chalk": "^4.1.2",
"commander": "^7.2.0",
"ncp": "^2.0.0",
"near-api-js": "^0.42.0",
"near-api-lite": "git+https://github.com/Narwallets/near-api-lite.git",
"node-fetch": "^2.6.1",
"open": "^8.3.0",
"openurl": "^1.1.1"
},
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"typescript": "^4.0.3"
}
}