forked from AElfProject/aelf-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.43 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "aelf-sdk",
"version": "3.2.41",
"description": "aelf-sdk js library",
"main": "dist/aelf.cjs.js",
"browser": "dist/aelf.umd.js",
"unpkg": "dist/aelf.umd.js",
"jsdelivr": "dist/aelf.umd.js",
"scripts": {
"build": "npm run clean && npm run build:browser && npm run build:node",
"build:browser": "cross-env RUNTIME_ENV=browser webpack --progress --colors --display-chunks --config ./build/webpack.browser.js",
"build:node": "cross-env RUNTIME_ENV=node webpack --progress --colors --display-chunks --config ./build/webpack.node.js",
"analyze:node": "npm run clean && cross-env RUNTIME_ENV=node webpack --config ./build/webpack.analyze.js",
"analyze:browser": "npm run clean && cross-env RUNTIME_ENV=browser webpack --config ./build/webpack.analyze.js",
"clean": "rimraf dist/*",
"commit": "git-cz",
"lint": "eslint src",
"proto": "node scripts/compile-proto.js",
"release": "standard-version -a",
"test": "npm run test:browser && npm run test:node",
"test:browser": "jest --config=jest.browser.config.js",
"test:browser:watch": "jest --config=jest.browser.config.js --watch",
"test:node": "jest --config=jest.node.config.js",
"test:node:watch": "jest --config=jest.node.config.js --watch"
},
"keywords": [
"aelf-sdk"
],
"files": [
"src",
"dist",
"proto",
"README.md",
"yarn.lock"
],
"author": "hzz780",
"license": "MIT",
"devEngines": {
"node": "10.x || 11.x || 12.x"
},
"engines": {
"node": ">=10.5.0"
},
"engineStrict": true,
"dependencies": {
"@aelfqueen/protobufjs": "^6.8.9",
"@babel/runtime": "^7.4.5",
"assert": "^2.0.0",
"bignumber.js": "^9.0.0",
"bip39": "^3.0.2",
"browserify-cipher": "^1.0.1",
"bs58": "^4.0.1",
"buffer": "^5.2.1",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1",
"hdkey": "^1.1.1",
"js-sha256": "^0.9.0",
"query-string": "5.1.1",
"randombytes": "^2.1.0",
"scryptsy": "^2.1.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"bundle-analyzer": "^0.0.6",
"chalk": "^2.4.2",
"commitizen": "^4.0.3",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.0",
"file-loader": "^4.0.0",
"git-cz": "^3.0.1",
"glob": "^7.1.4",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-environment-jsdom-fifteen": "^1.0.0",
"lint-staged": "^9.0.2",
"rimraf": "^2.6.3",
"standard-version": "^9.1.1",
"unused-files-webpack-plugin": "^3.4.0",
"webpack": "^4.35.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-merge": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
}
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/AElfProject/aelf-sdk.js.git"
},
"standard-version": {
"scripts": {
"postbump": "npm run build && git add ."
}
}
}