-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
97 lines (97 loc) · 2.65 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@line/lbd-sdk-js",
"version": "1.4.8",
"description": "javascript sdk for Line Blockchain Developers",
"engines": {
"node": ">=10"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:line/line-blockchain-developers-sdk-js.git"
},
"license": "Apache-2.0",
"keywords": [
"line-blockchain-developers-sdk",
"line blockchain",
"line-blockchain-developers"
],
"scripts": {
"prettier": "prettier --parser typescript --trailing-comma all --arrow-parens avoid \"{lib,test}/**/*.ts\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- -l",
"pretest": "npm run build",
"clean": "rm -rf dist/* && rm -f tsconfig.tsbuildinfo",
"build": "tsc -p tsconfig.json",
"test-api": "mocha test/http-client-base.spec.ts -r ts-node/register",
"test:integration": "mocha integration-test/*.spec.ts -r ts-node/register",
"test-single": "mocha -g",
"test": "mocha test/**/*.ts -r ts-node/register",
"generate-changelog": "ts-node ./scripts/generate-changelog.ts",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish",
"prepare": "husky install || exit 0",
"release": "npm run build && npm publish --access public"
},
"dependencies": {
"@cosmjs/amino": "^0.29.5",
"@types/crypto-js": "^4.0.1",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.165",
"axios": "^0.21.1",
"crypto-js": "^4.0.0",
"crypto-random-string": "^3.3.0",
"js-base64": "^3.7.3",
"jsonpath": "^1.1.1",
"lodash": "^4.17.20",
"tslog": "^3.0.2",
"typescript-collections": "^1.3.3"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/finalhandler": "^1.1.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.25",
"axios-mock-adapter": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"finalhandler": "^1.1.2",
"husky": "^5.1.3",
"mocha": "^10.2.0",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"ts-dotenv": "^0.8.3",
"ts-node": "^10.8.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:check",
"pre-push": "npm run format:check && npm run build && npm run test"
}
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": true,
"instrument": true
},
"mocha": {
"require": "ts-node/register",
"spec": "test/*.spec.ts"
}
}