-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "witnet-solidity",
"version": "2.0.3",
"description": "Witnet CLI import module for Solidity projects",
"author": "Witnet Foundation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-solidity/tree/2.0"
},
"private": false,
"type": "commonjs",
"bin": {
"witnet": "src/bin/witnet.js"
},
"exports": {
".": "./witnet/assets/index.js",
"./assets": "./witnet/assets/index.js",
"./utils": "./witnet/scripts/utils.js"
},
"files": [
"src",
"witnet",
".env_witnet"
],
"scripts": {
"fmt": "eslint --ext .js,.ts,.cjs . --ignore-path .gitignore && solhint --max-warnings 0 \"witnet/migrations/contracts/**/*.sol\"",
"fmt!": "eslint --ext .js,.ts,.cjs . --fix --ignore-path .gitignore && solhint --max-warnings 0 \"witnet/migrations/contracts/**/*.sol\" --fix",
"postinstall": "npx witnet-toolkit update",
"test": "cross-env-shell WITNET_SOLIDITY_REQUIRE_RELATIVE_PATH='../../../witnet' WITNET_SOLIDITY_MODULE_PATH='./witnet' node ./src/bin/witnet.js test"
},
"keywords": [
"solidity",
"oracle",
"witnet",
"evm",
"www",
"randomness",
"data feeds",
"data requests",
"typescript",
"javascript",
"truffle"
],
"dependencies": {
"dotenv": "^16.4.1",
"inquirer": "^8.0.0",
"truffle": "^5.11.5",
"witnet-solidity-bridge": "../witnet-solidity-bridge",
"witnet-toolkit": "../witnet-toolkit"
},
"devDependencies": {
"cbor": "^9.0.2",
"cross-env": "7.0.3",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^6.10.0",
"hardhat": "^2.19.5",
"solhint": "^4.1.1"
}
}