-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "@cityofzion/dora-ts",
"version": "0.3.0",
"description": "A typescript sdk for the dora blockchain data aggregator by COZ.",
"license": "Apache-2.0",
"main": "dist/index",
"types": "dist/index",
"repository": {
"type": "git",
"url": "https://github.com/CityOfZion/dora-sdk-ts"
},
"publishConfig": {
"access": "public"
},
"private": false,
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "tsc",
"test": "mocha 'src/**/*.test.ts'",
"fmt": "prettier --write ./src/**/*.ts",
"precommit": "lint-staged",
"docs": "typedoc --out docs/",
"publishDocs": "aws sy sync ./docs s3://neoscan/prod/documentation --acl public-read "
},
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.7",
"eslint": "^8.44.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}