-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
44 lines (44 loc) · 1.14 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": "smart-asset-poc",
"version": "0.0.1",
"description": "Blockchain contracts for smart assets",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "truffle compile",
"deploy": "truffle migrate",
"test": "truffle test",
"prestart": "npm run build",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BankEx/smart-asset-poc.git"
},
"keywords": [
"blockchain",
"contracts",
"ethereum",
"tokenization",
"bankex",
"smart-assets"
],
"author": "BankEx",
"license": "MIT",
"bugs": {
"url": "https://github.com/BankEx/smart-asset-poc/issues"
},
"homepage": "https://github.com/BankEx/smart-asset-poc#readme",
"devDependencies": {
"big-integer": "^1.6.23",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.1",
"cross-spawn": "^5.1.0",
"ethereumjs-testrpc": "^4.1.3",
"truffle": "^3.4.9",
"zeppelin-solidity": "^1.2.0"
}
}