-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.65 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.65 KB
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
{
"name": "@bitcann/contracts",
"author": "Kuldeep Singh",
"version": "0.1.4",
"description": "Bitcoin Cash for Assigned Names and Numbers",
"homepage": "https://github.com/BitCANN/contracts",
"repository": {
"type": "git",
"url": "git@github.com:BitCANN/contracts.git"
},
"exports": {
".": "./build/lib/index.js"
},
"sideEffects": false,
"types": "./build/lib/index.d.ts",
"type": "module",
"files": [
"build/lib"
],
"scripts": {
"build": "npm run compile && tsc",
"compile:registry": "cashc ./contracts/Registry.cash -o ./contracts/Registry.json",
"compile:name": "cashc ./contracts/Name.cash -o ./contracts/Name.json",
"compile:bid": "cashc ./contracts/Bid.cash -o ./contracts/Bid.json",
"compile:auction": "cashc ./contracts/Auction.cash -o ./contracts/Auction.json",
"compile:factory": "cashc ./contracts/Factory.cash -o ./contracts/Factory.json",
"compile:nameenforcer": "cashc ./contracts/NameEnforcer.cash -o ./contracts/NameEnforcer.json",
"compile:ownershipguard": "cashc ./contracts/OwnershipGuard.cash -o ./contracts/OwnershipGuard.json",
"compile:conflictresolver": "cashc ./contracts/ConflictResolver.cash -o ./contracts/ConflictResolver.json",
"compile:accumulator": "cashc ./contracts/Accumulator.cash -o ./contracts/Accumulator.json",
"compile": "npm run compile:registry && npm run compile:auction && npm run compile:name && npm run compile:bid && npm run compile:factory && npm run compile:nameenforcer && npm run compile:ownershipguard && npm run compile:conflictresolver && npm run compile:accumulator",
"postcompile": "node scripts/json-to-ts.js && npm run lint-fix",
"prepublishOnly": "npm run build",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"coverage": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/reporters": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cashc": "^0.11.5",
"cashscript": "^0.11.5",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typedoc": "^0.27.9",
"typedoc-plugin-coverage": "^3.4.1",
"typescript": "5.5.3"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"bitcoin-cash",
"smart-contracts",
"cashscript",
"bitcann"
],
"license": "MIT"
}