-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "@wetrustplatform/spring-nft-contracts",
"version": "0.0.1",
"description": "WeTrust Spring NFT Smart Contracts",
"main": ".exported.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "solium -d contracts/ --fix",
"test": "solidity-coverage",
"compile": "truffle compile",
"beforePublish": "truffle compile && node dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WeTrustPlatform/spring-nft-contracts.git"
},
"author": "shine2lay",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/WeTrustPlatform/spring-nft-contracts/issues"
},
"homepage": "https://github.com/WeTrustPlatform/spring-nft-contracts#readme",
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"chai-string": "^1.5.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.2.0",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.4",
"truffle": "4.1.14",
"web3-utils": "^1.0.0-beta.35"
}
}