-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 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
68
69
70
71
72
73
74
75
76
77
{
"name": "code-eating-hippo-contracts",
"version": "1.0.0",
"description": "A simple badge for attendance of Saturday coding salon",
"main": "src/index.js",
"scripts": {
"standard": "./node_modules/.bin/standard test/** src/** --fix",
"ethlint": "./node_modules/.bin/solium -d contracts --fix",
"precommit": "lint-staged && npm run test",
"modularize": "./node_modules/.bin/truffle run modularize",
"testContracts": "./scripts/test_contracts.sh",
"testModule": "./scripts/test_module.sh",
"test": "./scripts/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nonce-community/code-eating-hippo-contracts.git"
},
"keywords": [
"NFT",
"ERC721",
"Comuka",
"SaturdayCodingSalon"
],
"author": "Wanseob Lim",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nonce-community/code-eating-hippo-contracts/issues"
},
"homepage": "https://github.com/nonce-community/code-eating-hippo-contracts#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"ganache-cli": "^6.3.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"mocha": "^5.2.0",
"openzeppelin-solidity": "^2.1.2",
"solium": "^1.2.2",
"standard": "^12.0.1",
"truffle": "^5.0.3",
"truffle-plugin-modularizer": "^1.2.3",
"typedarray-to-buffer": "^3.1.5"
},
"dependencies": {
"chai-as-promised": "^7.1.1",
"javascript-stringify": "^1.6.0",
"truffle-contract": "^4.0.4"
},
"standard": {
"globals": [
"contract",
"artifacts",
"web3",
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"should",
"expect",
"assert"
]
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/standard --fix",
"git add"
],
"*.sol": [
"./node_modules/.bin/solium --fix --file",
"git add"
]
}
}