-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "truffle-contract-ts-example",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "test",
"build": "npm run build-solidity",
"build-ts": "tsc",
"build-solidity": "truffle compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aisuzuki/truffle-contract-ts-example.git"
},
"keywords": [
"Truffle",
"Solidity",
"truffle-contract",
"truffle-artifactor"
],
"author": "Ai Suzuki",
"license": "ISC",
"bugs": {
"url": "https://github.com/aisuzuki/truffle-contract-ts-example/issues"
},
"homepage": "https://github.com/aisuzuki/truffle-contract-ts-example#readme",
"dependencies": {
"ethlint": "^1.2.3",
"ganache-cli": "^6.3.0",
"truffle": "^5.0.4",
"truffle-artifactor": "^4.0.4",
"truffle-contract": "^4.0.5",
"ts-node": "^8.0.2",
"typescript": "^3.3.3"
}
}