-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 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
{
"name": "web_auth_sdk",
"version": "0.1.0",
"description": "The only and best SDK for ABCWallet application development.",
"author": "Link <xie.al@qq.com>",
"license": "MIT",
"types": "./types/index.d.ts",
"files": [
"cjs/",
"esm/",
"dist/",
"types/"
],
"keywords": [
"web_auth_sdk",
"web_auth",
"ckb"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BlockABC/web_auth_server.git"
},
"bugs": {
"url": "https://github.com/BlockABC/web_auth_server/issues"
},
"homepage": "https://github.com/BlockABC/web_auth_server",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"browser": "./dist/abcwallet.umd.min.js",
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:umd",
"build:umd": "webpack --mode=production --config webpack.conf.js",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:analysis": "webpack --mode=production --env.analysis --config webpack.conf.js",
"dev": "webpack-dev-server --mode=development --config webpack.conf.js",
"lint": "eslint --ext .ts --fix src/ test/",
"lint:nofix": "eslint --ext .ts src/ test/",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"commit": "npx git-cz",
"release": "node release.js"
},
"dependencies": {
"consola": "^2.11.3",
"decimal.js": "^10.2.0",
"eventemitter3": "^4.0.0",
"ts-custom-error": "^3.1.1"
},
"devDependencies": {
"@nervosnetwork/ckb-sdk-rpc": "^0.31.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^25.2.1",
"eslint": "^6.8.0",
"eslint-config-blockabc": "^0.9.4",
"jest": "^25.3.0",
"semantic-release": "^17.0.4",
"ts-jest": "^25.3.1",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}