-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
58 lines (58 loc) · 1.55 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
54
55
56
57
58
{
"name": "@anchor-protocol/anchor.js",
"version": "5.1.0",
"author": "Anchor Protocol",
"license": "MIT",
"repository": "github:Anchor-Protocol/anchor.js",
"bugs": "https://github.com/Anchor-Protocol/anchor.js/issues",
"homepage": "https://github.com/Anchor-Protocol/anchor.js",
"engines": {
"node": ">=12"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --module commonjs",
"test": "jest",
"doc": "typedoc",
"precommit": "auto-changelog",
"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",
"prepare": "husky install"
},
"lint-staged": {
"**/src/{**/*,*}.{ts,tsx}": [
"prettier --write",
"eslint --max-warnings 0"
]
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@ssen/eslint-config": "^2.0.1",
"@ssen/prettier-config": "^2.0.1",
"@terra-money/terra.js": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"auto-changelog": "^2.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typedoc": "^0.22.5",
"typescript": "^4.4.3"
}
}