This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "truffle-contract",
"version": "4.0.2",
"description": "A better contract abstraction for Ethereum (formerly EtherPudding)",
"main": "index.js",
"scripts": {
"prepare": "npm run compile",
"publish:next": "node ../truffle/scripts/prereleaseVersion.js next next",
"test": "./scripts/test.sh",
"test:debug": "$(npm bin)/mocha --inspect-brk",
"test:trace": "$(npm bin)/mocha --trace-warnings",
"compile": "mkdir -p dist && browserify ./index.js -i xmlhttprequest -o ./dist/truffle-contract.js && uglifyjs ./dist/truffle-contract.js -o ./dist/truffle-contract.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trufflesuite/truffle-contract.git"
},
"keywords": [
"ethereum",
"truffle",
"contract",
"abstraction"
],
"author": "Tim Coulter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trufflesuite/truffle-contract/issues"
},
"homepage": "https://github.com/trufflesuite/truffle-contract#readme",
"dependencies": {
"bignumber.js": "^7.2.1",
"ethereumjs-util": "^5.2.0",
"ethjs-abi": "0.1.8",
"truffle-blockchain-utils": "^0.0.7",
"truffle-contract-schema": "^3.0.1",
"truffle-error": "^0.0.3",
"uglify-es": "^3.3.9",
"web3": "^1.0.0-beta.37",
"web3-core-promievent": "^1.0.0-beta.37",
"web3-eth-abi": "^1.0.0-beta.37",
"web3-utils": "1.0.0-beta.37"
},
"devDependencies": {
"async": "2.6.1",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browserify": "^14.0.0",
"chai": "4.2.0",
"debug": "^4.1.0",
"ganache-core": "2.3.3",
"lodash": "4.17.10",
"mocha": "5.2.0",
"require-nocache": "^1.0.0",
"solc": "0.5.0",
"temp": "^0.8.3"
},
"publishConfig": {
"access": "public"
},
"babel": {
"presets": [
"env"
]
},
"gitHead": "b207efb3c1409746537293b3e0fc27350029188e"
}