forked from starknet-io/starknet.js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "starknet",
"version": "2.0.2",
"description": "JavaScript library for StarkNet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build && husky install",
"build": "tsc",
"pretest": "npm run lint",
"test": "jest",
"posttest": "npm run format",
"test:watch": "jest --watch",
"docs": "typedoc",
"format": "prettier --loglevel warn --write \"**/*.{ts,js,md,yml,json}\"",
"lint": "eslint . --cache --fix --ext .ts"
},
"keywords": [
"starknet",
"cairo",
"starkware",
"l2",
"zk",
"rollup"
],
"author": "Sean Han",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/elliptic": "^6.4.13",
"@types/jest": "^27.0.2",
"@types/json-bigint": "^1.0.1",
"@types/minimalistic-assert": "^1.0.1",
"@types/pako": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"import-sort-style-module": "^6.0.0",
"jest": "^27.3.0",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"prettier-plugin-import-sort": "^0.0.7",
"typedoc": "^0.22.6",
"typescript": "^4.4.4"
},
"dependencies": {
"axios": "^0.23.0",
"bn.js": "^5.2.0",
"elliptic": "^6.5.4",
"ethereum-cryptography": "^0.2.0",
"hash.js": "^1.1.7",
"json-bigint": "^1.0.0",
"minimalistic-assert": "^1.0.1",
"pako": "^2.0.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,js,md,yml,json}": "prettier --write"
},
"jest": {
"testTimeout": 800000
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}