This repository has been archived by the owner on Oct 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.08 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
{
"name": "contract",
"version": "0.2.0",
"engines": {
"node": "10.16.3"
},
"description": "Smart contracts for the art market",
"main": "truffle-config.js",
"files": [
"/contracts/**/*.sol"
],
"scripts": {
"postinstall": "npm install --prefix app",
"build": "npm run compile && npm run migrate:rinkeby && npm run build --prefix app",
"compile": "scripts/compile.sh",
"console": "truffle console",
"coverage": "truffle run coverage",
"migrate": "truffle migrate",
"migrate:rinkeby": "truffle migrate --network rinkeby --reset",
"lint": "npm-run-all lint:js lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "npx eslint .",
"lint:js:fix": "npx eslint . --fix",
"lint:sol": "npx solhint --max-warnings 0 \"contracts/**/*.sol\"",
"test": "scripts/test.sh",
"abi": "scripts/abi.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artistic-cryptids/contract.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"art",
"provenance"
],
"author": "Artistic Cryptids",
"license": "MIT",
"bugs": {
"url": "https://github.com/artistic-cryptids/contract/issues"
},
"homepage": "https://github.com/artistic-cryptids/contract#readme",
"dependencies": {
"@ensdomains/ens": "^0.4.0",
"@ensdomains/resolver": "^0.1.10",
"@openzeppelin/contracts": "^2.3.0",
"@truffle/hdwallet-provider": "^1.0.23",
"eth-ens-namehash": "^2.0.8",
"truffle": "^5.0.44"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.1",
"chai": "^4.2.0",
"concurrently": "^5.0.0",
"coveralls": "^3.0.7",
"eslint": "^6.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^3.1.0",
"ethereumjs-util": "^6.1.0",
"ganache-cli": "^6.7.0",
"npm-run-all": "^4.1.5",
"solhint": "2.3.0",
"solidity-coverage": "^0.7.0-beta.2"
}
}