-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.81 KB
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
{
"name": "starknet-devnet",
"version": "0.8.2",
"description": "Starknet Devnet provider",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build-check": "tsc -p tsconfig.build.json --noEmit && tsc -p tsconfig.test.json",
"test": "mocha -r ts-node/register test/**/*.ts",
"pretest": "npm run build",
"format": "prettier --log-level log --write \"**/*.{ts,js,md,yml,json}\"",
"format-check": "prettier --log-level log --check \"**/*.{ts,js,md,yml,json}\"",
"lint": "eslint $(git ls-files '*.ts') --cache --fix",
"lint-check": "eslint $(git ls-files '*.ts') --cache",
"check-all-tests-executed": "! grep '\\(describe\\|it\\)\\.only(' $(git ls-files '*.ts')"
},
"author": "SpaceShard",
"repository": {
"type": "git",
"url": "git+https://github.com/starknet-io/starknet-devnet-js.git"
},
"keywords": [
"starknet",
"devnet",
"provider",
"starkware",
"l2",
"l1-l2",
"zk",
"json-rpc"
],
"license": "MIT",
"dependencies": {
"axios": "^1.7.4",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/decompress": "^4.2.7",
"@types/mocha": "^9.1.1",
"@types/node": "^24.0.0",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"chai": "^4.3.7",
"eslint": "^8.57.0",
"ethers": "^6.16.0",
"mocha": "^10.2.0",
"prettier-eslint": "^16.3.0",
"starknet": "~8.5.4",
"tmp": "^0.2.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}