-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "@runningbeta/erc721-holdings",
"version": "0.0.2",
"description": "ERC721 Holdings contracts library for Solidity",
"directories": {
"test": "test"
},
"files": [
"contracts",
"test"
],
"scripts": {
"compile": "node_modules/.bin/truffle compile",
"test": "node_modules/.bin/truffle test",
"console": "node_modules/.bin/truffle console",
"lint:sol": "./node_modules/solium/bin/solium.js -d .",
"lint:sol:fix": "./node_modules/solium/bin/solium.js -d . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/runningbeta/erc721-holdings.git"
},
"keywords": [
"erc721",
"holdings",
"non-fungible",
"token",
"item",
"solidity",
"ethereum",
"smart",
"contracts",
"r8",
"runningbeta",
"security",
"zeppelin"
],
"author": "Kristijan Rebernisak <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/runningbeta/erc721-holdings/issues"
},
"homepage": "https://github.com/runningbeta/erc721-holdings#readme",
"dependencies": {
"openzeppelin-solidity": "^1.9.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ethjs-abi": "^0.2.1",
"solium": "^1.1.7",
"truffle": "^4.1.7",
"web3": "^1.0.0-beta.34"
}
}