forked from Anchor-Protocol/anchor-earn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
45
46
47
48
49
50
51
52
53
{
"name": "@anchor-protocol/anchor-earn",
"version": "1.0.4",
"author": "Anchor Protocol",
"license": "MIT",
"repository": "github:Anchor-Protocol/anchor-earn",
"bugs": "https://github.com/Anchor-Protocol/anchor-earn/issues",
"homepage": "https://github.com/Anchor-Protocol/anchor-earn",
"engines": {
"node": ">=12"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --module commonjs",
"test": "jest --testTimeout 10000000",
"test-watch": "jest --testTimeout 100000000 --watch",
"doc": "typedoc",
"format": "prettier --write ./src/**/**/*.ts",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prepublishOnly": "npm run build",
"integration-test": "ts-node ./integration-test/index.ts",
"prepublish": "npm run build",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@terra-money/terra.js": "^1.3.6"
},
"devDependencies": {
"@ssen/eslint-config": "^1.3.1",
"@ssen/prettier-config": "^1.2.0",
"@terra-money/terra.js": "^1.3.6",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.21.3",
"eslint-config-prettier": "^8.1.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.34",
"typescript": "^4.2.3"
}
}