-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "contract-tester",
"version": "1.0.1",
"private": true,
"scripts": {
"init": "script/init.sh",
"build": "script/compile.sh",
"pretest": "script/compile.sh && script/blockchain.sh",
"test": "yarn && jest",
"cleos": "script/cleos.sh",
"testonly": "yarn && jest"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"cross-fetch": "^3.1.5",
"eosjs": "^22.1.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}