-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
89 lines (89 loc) · 2.56 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ERC-3643",
"version": "0.1.0",
"description": "ERC-3643: An accessible, optimized, and light-weight version of the T-REX Standard (ERC-3643) security token standard. Ideal for tokenized securities and smart contracts in the blockchain world. Built with Solidity and leverages Web3 technologies.",
"keywords": [
"ERC-3643",
"ERC3643",
"Tokenization",
"Real World Assets",
"RWA",
"Security Tokens",
"Web3",
"Smart Contracts",
"Blockchain",
"Solidity",
"T-REX",
"Raptor",
"EIP3643",
"EIP-3643",
"Real World Asset",
"T-Rex Standard",
"Tokeny Solutions"
],
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"files": [
"artifacts",
"contracts",
"index.js",
"index.d.ts",
"!contract/_testContracts",
"!artifacts/contracts/_testContracts",
"!artifacts/build-info"
],
"scripts": {
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"build": "npx hardhat compile",
"lint:ts": "npx eslint \"**/*.ts\"",
"lint:ts-fix": "npx eslint \"**/*.ts\" --fix",
"lint:sol": "npx prettier \"**/*.{json,sol,md}\" --check && npx solhint \"contracts/**/*.sol\"",
"lint:sol-fix": "npx prettier \"**/*.{json,sol,md}\" --write && npx solhint \"contracts/**/*.sol\" --fix",
"lint": "npm run lint:ts && npm run lint:sol",
"lint:fix": "npm run lint:ts-fix && npm run lint:sol-fix",
"prepare": "husky install",
"docs": "hardhat dodoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aboudjem/ERC-3643.git"
},
"author": "Adam BOUDJEMAA (@aboudjem)",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/aboudjem/ERC-3643/issues"
},
"homepage": "https://github.com/aboudjem/ERC-3643#README",
"dependencies": {
"@onchain-id/solidity": "^2.0.0",
"@openzeppelin/contracts": "^4.8.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@xyrusworx/hardhat-solidity-json": "^1.0.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.19.1",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"solhint-plugin-prettier": "^0.0.5"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.ts": [
"eslint"
]
}
}