-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "@shardlabs/starknet-hardhat-plugin",
"version": "0.6.2",
"description": "Plugin for using Starknet tools within Hardhat projects",
"main": "dist/src/index.js",
"files": [
"dist"
],
"keywords": [
"starknet",
"hardhat",
"plugin",
"starkware",
"cairo",
"compile",
"deploy",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/Shard-Labs/starknet-hardhat-plugin.git"
},
"scripts": {
"test-configuration-tests": "TEST_SUBDIR=configuration-tests ./scripts/test.sh",
"test-general-tests": "TEST_SUBDIR=general-tests ./scripts/test.sh",
"test-venv-tests": "TEST_SUBDIR=venv-tests ./scripts/test.sh",
"test-integrated-devnet-tests": "TEST_SUBDIR=integrated-devnet-tests ./scripts/test.sh",
"build": "rm -rf dist && tsc",
"lint": "eslint src test"
},
"author": "Shard-Labs",
"license": "ISC",
"dependencies": {
"@nomiclabs/hardhat-docker": "^2.0.2",
"@shardlabs/starknet-hardhat-plugin": "^0.6.2",
"axios": "^0.24.0",
"exit-hook": "2.2.1",
"form-data": "^4.0.0",
"glob": "^7.2.0",
"is-wsl": "^2.2.0",
"starknet": "^3.15.0"
},
"peerDependencies": {
"hardhat": "^2.9.5"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/elliptic": "^6.4.14",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.4",
"eslint": "^8.5.0",
"hardhat": "^2.9.5",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.2"
}
}