-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 913 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
{
"name": "@ideallabs/murmur.js",
"version": "0.1.1",
"description": "A wrapper to interact with the Murmur API",
"license": "Apache-2.0",
"repository": "https://github.com/ideal-lab5/murmur.js",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "husky install"
},
"author": "Ideal Labs <hello@idealabs.network>",
"dependencies": {
"@polkadot/api": "^13.2.1",
"axios": "^1.7.7"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
}
}