diff options
Diffstat (limited to '')
| -rw-r--r-- | package.json | 5 |
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", |
