-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.74 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
{
"name": "@xgm/contract-library",
"version": "0.0.6",
"description": "Godmode Contract Library",
"main": "dist/index",
"engines": {
"node": "12.*"
},
"engineStrict": true,
"files": [
"/build/protocols.txt",
"/dist",
"/LICENSE",
"/README.md"
],
"scripts": {
"compile": "npm run dist && node dist/scripts/compile.js",
"clean": "rm -R node_modules",
"clean:build": "rm -R build/protocols",
"dist": "node_modules/typescript/bin/tsc",
"release": "dotenv release-it -- --only-version --verbose",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xGodMode/contract-library.git"
},
"keywords": [
"xgm",
"godmode",
"ethereum",
"solidity",
"smart-contracts"
],
"author": "valmack",
"license": "MIT",
"bugs": {
"url": "https://github.com/xGodMode/contract-library/issues"
},
"homepage": "https://github.com/xGodMode/contract-library#readme",
"dependencies": {
"@xgm/error-codes": "^0.0.3",
"glob": "^7.1.6",
"memorystream": "^0.3.1",
"require-from-string": "^2.0.2",
"solc": "^0.8.0"
},
"devDependencies": {
"@types/node": "^14.14.19",
"dotenv-cli": "^4.0.0",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"release-it": "^14.2.2",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release-it": {
"hooks": {
"before:init": [
"npm install"
]
},
"git": {
"requireBranch": "main",
"commitMessage": "release: v${version}"
},
"github": {
"release": true
}
},
"publishConfig": {
"access": "public"
}
}