-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "testing-suite",
"version": "0.11.3",
"description": "Example project to develop and test CashScript contracts",
"main": "index.js",
"type": "module",
"author": "mainnet-pat",
"license": "MIT",
"private": true,
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"build": "yarn clean && yarn compile",
"build:test": "yarn clean:test && yarn compile:test",
"clean": "rm -rf ./dist",
"clean:test": "rm -rf ./dist-test",
"compile": "tsc -p tsconfig.json && tsx tasks/index.ts compile",
"compile:test": "tsc -p tsconfig.test.json && tsx tasks/index.ts compile",
"lint": "eslint . --ext .ts --ignore-path ../../.eslintignore",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"pretest": "yarn build:test",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest"
},
"dependencies": {
"@bitauth/libauth": "^3.1.0-next.2",
"cashc": "^0.11.3",
"cashscript": "^0.11.3",
"url-join": "^5.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}