@dainprotocol/service-sdk 2.0.84 → 2.0.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +11 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dainprotocol/service-sdk",
3
- "version": "2.0.84",
3
+ "version": "2.0.85",
4
4
  "description": "DAIN Service SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -106,6 +106,14 @@
106
106
  ]
107
107
  }
108
108
  },
109
+ "scripts": {
110
+ "build": "tsc",
111
+ "build:types": "tsc --emitDeclarationOnly",
112
+ "test": "jest",
113
+ "test:watch": "jest --watch",
114
+ "prepublishOnly": "npm run build && npm run build:types",
115
+ "test:streaming": "ts-node src/standalone-streaming-test.ts"
116
+ },
109
117
  "keywords": [
110
118
  "dain",
111
119
  "sdk",
@@ -159,12 +167,5 @@
159
167
  "files": [
160
168
  "dist",
161
169
  "README.md"
162
- ],
163
- "scripts": {
164
- "build": "tsc",
165
- "build:types": "tsc --emitDeclarationOnly",
166
- "test": "jest",
167
- "test:watch": "jest --watch",
168
- "test:streaming": "ts-node src/standalone-streaming-test.ts"
169
- }
170
- }
170
+ ]
171
+ }