-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "@polymathnetwork/contract-artifacts",
"version": "3.1.0",
"engines": {
"node": ">=6.12"
},
"description": "Polymath smart contract compilation artifacts",
"main": "lib/src/index.js",
"license": "Apache-2.0",
"files": [
"lib/*"
],
"directories": {
"test": "test"
},
"scripts": {
"clean": "shx rm -rf lib",
"zip": "python3 scripts/abiReducer.py ./unzipArtifacts ./artifacts",
"build": "yarn clean && yarn tsc -b"
},
"repository": {
"type": "git",
"url": "https://github.com/PolymathNetwork/polymath-contract-artifacts.git"
},
"bugs": {
"url": "https://github.com/PolymathNetwork/polymath-contract-artifacts/issues"
},
"homepage": "https://github.com/PolymathNetwork/polymath-contract-artifacts/blob/master/README.md",
"keywords": [
"polymath",
"artifacts",
"json",
"abi",
"javascript",
"typescript"
],
"devDependencies": {
"shx": "^0.2.2",
"typescript": "3.2.2"
},
"publishConfig": {
"access": "public"
}
}