-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"name": "@abcwallet/packager",
"version": "1.2.2",
"author": "Link <xie.al@qq.com>",
"description": "A packager for easily creating ABCWallet compatiable offline package.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BlockABC/abcwallet_packager.git"
},
"main": "dist/index.js",
"bin": {
"abcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "eslint . --ext .ts --fix",
"lint:nofix": "eslint . --ext .ts",
"test:pack": "node dist/cli.js pack -v -c test/test_config.json",
"test:deploy": "cross-env DS_BASE_URL=http://127.0.0.1:14001/api/open node dist/cli.js deploy -v -I 287 -i test/create_by_config.zip",
"test:deploy-config": "cross-env DS_BASE_URL=http://127.0.0.1:14001/api/open node dist/cli.js deploy -v -c test/test_config.json",
"commit": "npx git-cz",
"release": "node release.js"
},
"dependencies": {
"archiver": "^3.1.1",
"chalk": "^3.0.0",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"loglevel": "^1.6.7",
"node-fetch": "^2.6.0",
"prompts": "^2.3.1",
"winston": "^3.2.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/exec": "^4.0.0",
"@semantic-release/git": "^8.0.0",
"@types/jest": "^24.0.25",
"@types/node": "12.12.24",
"babel-eslint": "^10.0.2",
"commitizen": "^4.0.3",
"cross-env": "^7.0.0",
"cz-conventional-changelog": "3.0.2",
"dotenv": "^8.2.0",
"eslint": "^6.1.0",
"eslint-config-blockabc": "^0.6.1",
"semantic-release": "^16.0.1",
"typescript": "^3.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}