-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.24 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
{
"name": "jcc-call-utils",
"version": "0.1.2",
"description": "Toolkit of crossing chain from Call chain to SWTC chain",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"unpkg": "dist/jcc-call-utils.min.js",
"scripts": {
"compile": "./compile.sh",
"build": "tsc -p tsconfig.json",
"test": "gulp",
"deploy": "./publish.sh",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test:node": "npm run build && nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha",
"test:browser": "npm run build && karma start karma.conf.js",
"tslint": "tslint --project tsconfig.json --config tslint.json",
"watch:tslint": "gulp dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCCDex/jcc-call-utils.git"
},
"dependencies": {
"@types/node": "^12.0.12",
"bignumber.js": "^9.0.0",
"call-for-browser": "^0.1.7",
"call-lib": "^0.2.8",
"jcc_wallet": "^0.4.1"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"cross-env": "^5.2.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"exports-loader": "^0.7.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.7.1",
"imports-loader": "^0.8.0",
"karma": "^4.1.0",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.3.3",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"typescript": "^3.5.2",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.35.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5"
},
"keywords": [
"cross-chain",
"jccdex",
"call-chain",
"swtc-chain",
"blockchain"
],
"author": "JCCDex",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JCCDex/jcc-call-utils/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/JCCDex/jcc-call-utils#readme"
}