This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.36 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
{
"name": "@polymathnetwork/abi-wrappers",
"version": "4.0.0",
"engines": {
"node": ">=6.12"
},
"files": [
"lib/**/*"
],
"description": "Low-level Polymath smart contract wrappers generated using @0x/abi-gen",
"main": "lib/src/index.js",
"scripts": {
"pre_build": "scripts/generator.sh",
"build": "tsc -b && yarn uglify",
"build:ci": "yarn build",
"semantic-release": "semantic-release",
"commit": "npx git-cz",
"lint": "tslint --format stylish --project .",
"uglify": "node_modules/uglifyjs-folder/cli.js lib/src/generated-wrappers -eo lib/src/generated-wrappers --pattern \"**/*.js,!**/*min.js\" -x .js",
"clean": "shx rm -rf src/generated-wrappers && shx mkdir src/generated-wrappers",
"prettier_contract_wrappers": "prettier --write src/generated-wrappers/**/*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/PolymathNetwork/polymath-abi-wrappers.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PolymathNetwork/polymath-abi-wrappers/issues"
},
"homepage": "https://github.com/PolymathNetwork/polymath-abi-wrappers/blob/master/README.md",
"devDependencies": {
"@0x/abi-gen": "4.2.1",
"@0x/types": "2.4.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@polymathnetwork/contract-artifacts": "3.0.0",
"@polymathnetwork/contract-artifacts-3-0-0": "npm:@polymathnetwork/contract-artifacts@3.0.0",
"@polymathnetwork/contract-artifacts-3-1-0": "npm:@polymathnetwork/contract-artifacts@3.1.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.1.0-beta.3",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"hbs-cli": "^1.3.0",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"semantic-release": "16.0.0-beta.18",
"semantic-release-cli": "^5.1.1",
"shx": "^0.3.2",
"tslint": "5.18.0",
"uglifyjs-folder": "^1.5.1"
},
"dependencies": {
"@0x/base-contract": "5.4.0",
"@0x/utils": "4.5.2",
"@0x/web3-wrapper": "6.0.13",
"ethereum-types": "2.1.6",
"ethers": "^4.0.37",
"lodash": "^4.17.15",
"typescript": "3.5.3"
},
"publishConfig": {
"access": "public"
}
}