@chainlink/external-adapter-framework 0.0.63 → 0.0.64

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 +6 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chainlink/external-adapter-framework",
3
- "version": "0.0.63",
3
+ "version": "0.0.64",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -19,10 +19,11 @@
19
19
  "build": "tsc",
20
20
  "dev": "NODE_ENV=develop tsnd --respawn --transpile-only --project tsconfig.json './src/test.ts'",
21
21
  "generate-docs": "typedoc src/**/*.ts",
22
- "lint-fix": "eslint --fix ./src && prettier --write ./src/**/*.ts ./*.{json,js,yaml}",
23
- "lint": "eslint ./src && prettier --check ./src/**/*.ts ./*.{json,js,yaml}",
24
- "test-debug": "LOG_LEVEL=trace DEBUG=true EA_PORT=0 c8 ava --verbose",
25
- "test": "LOG_LEVEL=error EA_PORT=0 c8 ava",
22
+ "lint-fix": "eslint --max-warnings=0 --fix ./src && prettier --write ./src/**/*.ts ./*.{json,js,yaml}",
23
+ "lint": "eslint --max-warnings=0 ./src && prettier --check ./src/**/*.ts ./*.{json,js,yaml}",
24
+ "start": "ts-node -e 'import(`./src/examples/${process.argv[1]}/src/index`).then(ea => ea.server())'",
25
+ "test-debug": "SKIP_METRICS_CLEAR=true LOG_LEVEL=trace DEBUG=true EA_PORT=0 c8 ava --verbose",
26
+ "test": "SKIP_METRICS_CLEAR=true LOG_LEVEL=error EA_PORT=0 c8 ava",
26
27
  "verify": "yarn lint && yarn build && yarn build -p ./test/tsconfig.json && yarn test"
27
28
  },
28
29
  "devDependencies": {