forked from ArweaveTeam/testweave-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "testweave-sdk",
"version": "0.2.2",
"description": "This is the SDK of TestWeave. TestWeave is the testing environment of the Arweave.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "ts-mocha tests/**/*.test.ts",
"test:free": "npm run build | npx ts-node tests/free-tests.ts",
"coverage": "nyc npm test",
"lint": "eslint src/**/*.ts",
"generate:docs": "npx typedoc --excludePrivate --excludeProtected"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArweaveTeam/testweave-sdk"
},
"keywords": [
"SmartWeave",
"Arweave",
"Testing",
"Suite",
"Typescrypt"
],
"author": "The Arweave Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArweaveTeam/testweave-sdk/issues"
},
"homepage": "https://github.com/ArweaveTeam/testweave-sdk#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "latest",
"@types/chai": "latest",
"@types/eslint": "latest",
"@types/mocha": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chai": "latest",
"eslint": "latest",
"mocha": "latest",
"nyc": "latest",
"ts-mocha": "latest",
"typedoc": "latest",
"typescript": "latest"
},
"dependencies": {
"@types/axios": "^0.14.0",
"arweave": "^1.10.11",
"axios": "^0.21.1",
"smartweave": "^0.4.27"
}
}