-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@cardano-graphql/cli",
"version": "9.0.2",
"description": "Management tool for managing a Cardano GraphQL deployment",
"main": "./dist/index.js",
"bin": {
"cgql": "./dist/index.js"
},
"typings": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -b ./src && shx cp ../../docker-compose.yml dist/Docker/",
"cleanup": "shx rm -rf dist node_modules",
"dev": "ts-node-dev --no-notify --respawn --transpile-only src/index.ts",
"global:add": "yarn build && yarn global add file:$PWD",
"global:remove": "yarn global remove @cardano-graphql/cli",
"lint": "eslint --ignore-path ../../.eslintignore \"**/*.ts\"",
"prepack": "yarn build",
"postpack": "shx rm -rf dist",
"test": "shx echo Tests disabled temporarily",
"test:docker-compose": "NODE_ENV=test jest -c ./test/jest.config.js docker-compose.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"keywords": [
"Cardano",
"Blockchain",
"GraphQL",
"CLI"
],
"contributors": [
"Rhys Bartels-Waller <rhys.bartelswaller@iohk.io> (https://iohk.io)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/cli/README.md",
"dependencies": {
"appdirectory": "^0.1.0",
"chalk": "^3.0.0",
"clear": "^0.1.0",
"commander": "^5.0.0",
"conf": "^6.2.4",
"cross-fetch": "^3.1.5",
"docker-compose": "0.23.6",
"dockerode": "^4.0.2",
"figlet": "^1.3.0",
"fs-extra": "^9.0.0",
"inquirer": "^7.1.0",
"js-yaml": "^3.13.1",
"password-generator": "^2.2.3",
"ts-log": "^2.1.4",
"write-json-file": "^4.3.0"
},
"devDependencies": {
"shx": "^0.3.2",
"typescript": "^3.9.5"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist/*",
"src/Docker/docker-compose.yml",
"!dist/__test__",
"!dist/**/*.test.*",
"LICENSE",
"NOTICE"
]
}