generated from sindresorhus/node-cli-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.09 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "gamechanger-dapp-cli",
"version": "0.0.18",
"description": "Command line interface for creating ready to use dApps for Cardano with GameChanger Wallet (https://gamechanger.finance/)",
"license": "MIT",
"repository": "BlockwideTeam/gamechanger-dapp-cli",
"author": {
"name": "Javier Ribó, Adriano Fiorenza",
"email": "info@gamechanger.finance",
"url": "https://gamechanger.finance/"
},
"bin": {
"gamechanger-dapp-cli": "dist/cli.js"
},
"engines": {
"node": ">=12"
},
"files": [
"dist/**/*"
],
"keywords": [
"Cardano",
"testnet",
"mainnet",
"GameChanger",
"GameChanger Wallet",
"GameChanger Finance",
"GCScript",
"GCScripts",
"dApp",
"dApp connector",
"blockchain",
"utxo",
"eutxo",
"qr",
"json",
"no code"
],
"type": "commonjs",
"scripts": {
"prepublish": "npm run build",
"clean": "rm -Rf dist",
"build:all": "npm run clean && npm run type-check",
"build": "npm run build:all && tsc && cp -R src/assets dist && rm -rf dist/tests",
"start": "node dist/cli.js",
"type-check": "tsc --noEmit && eslint .",
"test": "ts-mocha --require=ts-node/register --loader=ts-node/esm --no-warnings --experimental-module --experimental-specifier-resolution=node -p tsconfig.json src/tests/main.ts src/tests/**/*.test.ts"
},
"typings": "index.d.ts",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.27",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"execa": "^5.0.0",
"mocha": "^9.2.2",
"prettier": "^2.4.1",
"sinon": "^13.0.2",
"ts-mocha": "^9.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/runtime": "^7.17.9",
"chai": "^4.3.6",
"data-uri-to-buffer": "^3.0.1",
"easyqrcodejs-nodejs": "^4.4.3",
"fs": "0.0.1-security",
"get-stdin": "^8.0.0",
"json-url": "^3.0.0",
"meow": "^9.0.0",
"node-self": "^1.0.0-d",
"path": "^0.12.7",
"stream": "0.0.2"
}
}