-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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
{
"name": "solana-test-validator-docker",
"version": "1.0.14",
"description": "Solana docker CLI to facilitate usages of solana-test-validator, cargo and anchor",
"keywords": [
"solana",
"solana-test-validator",
"docker",
"anchor",
"cargo"
],
"scripts": {
"pre-publish": "yarn run clean-compile",
"clean": "rimraf build",
"compile": "tsc -v && tsc --pretty",
"compile-watch": "tsc --pretty -w",
"clean-compile": "yarn run clean && yarn run compile",
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.ts' --fix"
},
"bin": {
"anchor-docker": "./bin/anchor-docker.sh",
"cargo-docker": "./bin/cargo-docker.sh",
"solana-docker": "./bin/solana-docker.sh",
"solana-docker-shell": "./bin/solana-docker-shell.js",
"solana-test-validator-docker": "./bin/solana-test-validator-docker.js",
"yarn-docker": "./bin/yarn-docker.sh"
},
"author": "[email protected]",
"repository": {
"url": "https://github.com/tchambard/solana-test-validator-docker"
},
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"colors": "^1.4.0",
"command-exists": "^1.2.9",
"exeunt": "^1.1.2",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"memory-streams": "^0.1.3",
"packpath": "^0.1.0",
"shelljs": "^0.8.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@types/command-exists": "^1",
"@types/eslint-plugin-mocha": "^10",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.12",
"@types/shelljs": "^0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
}
}