-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.6 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": "jcc-moac-utils",
"version": "0.3.8",
"description": "Toolkit of crossing chain from MOAC chain to SWTC chain",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"unpkg": "dist/jcc-moac-utils.min.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"deploy": "./publish.sh",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "npm run test:node && npm run test:browser",
"test:node": "tsc && nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --timeout=3000 test/*.spec.js",
"test:browser": "tsc && karma start karma.conf.js",
"tslint": "tslint --project tsconfig.json --config tslint.json",
"compile": "./compile.sh",
"pretty": "prettier --write {src,test}/**/*.{js,ts}"
},
"author": "JCCDex",
"license": "MIT",
"dependencies": {
"@types/node": "^13.7.7",
"bignumber.js": "^9.0.0",
"chain3": "^0.1.22",
"jcc-moac-abi": "^0.1.7",
"jcc_wallet": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"babel-loader": "^8.0.6",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"husky": "^4.2.3",
"karma": "^4.4.1",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"sinon": "^9.0.0",
"ts-loader": "^6.2.1",
"tslint": "^6.0.0",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCCDex/jcc-moac-utils.git"
},
"keywords": [
"cross-chain",
"jccdex",
"moac-chain",
"swtc-chain",
"blockchain"
],
"bugs": {
"url": "https://github.com/JCCDex/jcc-moac-utils/issues"
},
"homepage": "https://github.com/JCCDex/jcc-moac-utils#readme",
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99
},
"husky": {
"hooks": {
"pre-commit": "npm run tslint && pretty-quick --staged"
}
},
"files": [
"lib",
"dist"
],
"sideEffects": false
}