-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.33 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
{
"name": "pha-deploy",
"version": "0.5.0",
"description": "CLI for Phantasma token and contract lifecycle workflows",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pha-deploy": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"config/config.example.toml"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phantasma-io/pha-deploy.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist && mkdir -p dist",
"dev": "ts-node-dev --respawn --transpile-only src/cli.ts",
"start": "node --enable-source-maps dist/cli.js",
"cli": "npm run build && node dist/cli.js",
"lint": "eslint \"src/**/*.{ts,js}\" --fix || true",
"test": "node --test -r ts-node/register test/**/*.test.ts",
"prepare": "npm run build"
},
"keywords": [
"phantasma",
"phantasma-sdk-ts",
"cli",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@iarna/toml": "*",
"phantasma-sdk-ts": "^0.5.2",
"yargs": "*"
},
"devDependencies": {
"@types/node": "*",
"@types/yargs": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"ts-node": "*",
"ts-node-dev": "*"
}
}