-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "starknet-devnet",
"version": "0.2.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",
"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": "github:0xSpaceShard/starknet-devnet-js",
"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": "^20.3.1",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"chai": "^4.3.7",
"eslint": "^8.57.0",
"ethers": "^6.13.1",
"mocha": "^10.2.0",
"prettier-eslint": "^16.3.0",
"starknet": "~6.9.0",
"tmp": "^0.2.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}