-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
{
"name": "@polywrap/safe-api-plugin",
"description": "Safe API Plugin for Polywrap",
"version": "0.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polywrap/safe-api-plugin.git"
},
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
"codegen": "npx polywrap codegen",
"lint": "eslint --color -c ./.eslintrc.js src/",
"test": "yarn test:codegen && jest --passWithNoTests --runInBand --verbose",
"test:ci": "yarn test:codegen && jest --passWithNoTests --runInBand --verbose",
"test:codegen": "npx polywrap codegen -m ./src/__tests__/types/polywrap.app.yaml -g ./src/__tests__/types/wrap",
"test:watch": "jest --watch --passWithNoTests --verbose",
"publish:npm": "yarn publish --access public --non-interactive --verbose",
"publish:pre:npm": "yarn publish --access public --non-interactive --verbose --tag pre"
},
"dependencies": {
"@polywrap/core-js": "~0.12.0",
"@polywrap/plugin-js": "~0.12.0",
"@safe-global/api-kit": "^1.3.1",
"@safe-global/safe-core-sdk-types": "^2.3.0",
"axios": "0.21.4",
"form-data": "4.0.0"
},
"peerDependencies": {
"@polywrap/core-js": "0.12.x",
"@polywrap/plugin-js": "0.12.x",
"axios": "0.21.x"
},
"devDependencies": {
"@polywrap/cli-js": "~0.12.0",
"@polywrap/client-js": "~0.12.0",
"@safe-global/protocol-kit": "^1.3.0",
"@types/jest": "29.5.0",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-prettier": "3.4.0",
"ganache-cli": "^6.12.2",
"jest": "29.5.0",
"nock": "13.0.7",
"polywrap": "~0.12.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public"
}
}