aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorUri Shaked2019-12-01 22:04:02 +0200
committerUri Shaked2019-12-01 22:04:02 +0200
commitec512ea868d5df64a8a11ed27d5032337760ffde (patch)
tree17498763371060cb9a21d38dfea704046dbeee81 /package.json
parentfeat: initial implementation of USART (diff)
downloadavr8js-ec512ea868d5df64a8a11ed27d5032337760ffde.tar.gz
avr8js-ec512ea868d5df64a8a11ed27d5032337760ffde.tar.bz2
avr8js-ec512ea868d5df64a8a11ed27d5032337760ffde.zip
feat: add benchmarking code
Diffstat (limited to '')
-rw-r--r--package.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json
index c1d4dd4..2112003 100644
--- a/package.json
+++ b/package.json
@@ -13,7 +13,9 @@
"start": "parcel demo/src/index.html -d demo/build",
"lint": "tslint --project tsconfig.json",
"test": "npm run lint && jest",
- "test:watch": "jest --watch"
+ "test:watch": "jest --watch",
+ "benchmark:prepare": "ts-node --project tsconfig.benchmark.json benchmark/convert-instructions.ts",
+ "benchmark": "ts-node --project tsconfig.benchmark.json benchmark/index.ts"
},
"files": [
"dist"
@@ -21,6 +23,7 @@
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.7",
+ "@types/prettier": "^1.19.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",