-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
70 lines (70 loc) · 2.27 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
{
"name": "@shardlabs/starknet-hardhat-plugin",
"version": "0.8.0-alpha.5",
"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/0xSpaceShard/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",
"test-recompilation-tests": "TEST_SUBDIR=recompilation-tests ./scripts/test.sh",
"test-dev": "./scripts/test-dev.sh",
"build": "rm -rf dist && tsc && npm run copy-files",
"copy-files": "cp src/*.py dist/src/",
"lint": "eslint $(git ls-files '*.ts')",
"format": "prettier-eslint --list-different --write $(git ls-files '*.ts' '*.js')"
},
"author": "SpaceShard",
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@nomiclabs/hardhat-docker": "^2.0.2",
"axios": "^1.6.5",
"axios-retry": "^3.9.1",
"exit-hook": "2.2.1",
"form-data": "^4.0.0",
"glob": "^10.3.10",
"shelljs": "^0.8.5",
"starknet": "~5.19.3",
"tar-fs": "^3.0.4"
},
"peerDependencies": {
"hardhat": "^2.14.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/elliptic": "^6.4.14",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"@types/shelljs": "^0.8.11",
"@types/tar-fs": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.7",
"eslint": "^8.5.0",
"hardhat": "^2.19.4",
"mocha": "^10.0.0",
"prettier-eslint-cli": "^7.0.0",
"ts-node": "^10.4.0",
"typescript": "^5.0.0"
}
}