-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "@zoints/staking",
"version": "1.1.1",
"description": "The JavaScript library for staking",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc -p .",
"lint": "eslint src",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-ci": "prettier --config .prettierrc 'src/**/*.ts' --list-different",
"test": "mocha -r ts-node/register test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/Zoints/staking.git",
"directory": "js"
},
"author": "Who Soup",
"license": "UNLICENSED",
"dependencies": {
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.29.2",
"bn.js": "^5.2.0",
"borsh": "^0.6.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bn.js": "^4.11.6",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"mocha": "^9.0.1",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}