forked from terra-money/oracle-feeder
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "oracle-feeder",
"author": "Terra Core",
"license": "Apache-2.0",
"description": "Oracle feeder repository",
"scripts": {
"test": "jest",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"./src/**/*.{json,css}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terra-money/oracle-feeder.git"
},
"keywords": [
"oracle",
"blockchain",
"terra",
"cosmos"
],
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/terra-money/oracle-feeder/issues"
},
"homepage": "https://github.com/terra-money/oracle-feeder#readme"
}