-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.11 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
{
"name": "qtest-js",
"version": "1.0.0",
"description": "eosio testing library",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest "
},
"dependencies": {
"eosjs": "^22.1.0",
"eosjs-account-name": "^2.2.1",
"node-fetch": "2",
"tslint": "^6.1.3"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
},
"files": [
"dist"
],
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generEOS/Qtest.git"
},
"keywords": [
"qtest",
"testing",
"unit-test",
"eosio",
"wax",
"telos",
"antelope",
"leap"
],
"author": "",
"bugs": {
"url": "https://github.com/generEOS/Qtest/issues"
},
"homepage": "https://github.com/generEOS/Qtest#readme"
}