-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.31 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
{
"name": "aelf-sdk-cross-chain",
"version": "1.0.14",
"description": "sdk for cross chain",
"main": "dist/aelf-cross-chain.cjs.js",
"browser": "dist/aelf-cross-chain.umd.js",
"unpkg": "dist/aelf-cross-chain.umd.js",
"jsdelivr": "dist/aelf-cross-chain.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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.umd.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AElfProject/aelf-sdk-cross-chain.js.git"
},
"keywords": [
"aelf-sdk-cross-chain"
],
"author": "hzz780",
"license": "MIT",
"bugs": {
"url": "https://github.com/AElfProject/aelf-sdk-cross-chain.js/issues"
},
"homepage": "https://github.com/AElfProject/aelf-sdk-cross-chain.js#readme",
"dependencies": {
"chalk": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-remove-console": "^6.9.4",
"cross-env": "^5.2.0",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"git-cz": "^3.2.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"unused-files-webpack-plugin": "^3.4.0",
"webpack": "^4.39.3",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
}
},
"lint-staged": {
"*.js": "eslint"
}
}