backgroundtask/package.json

26 lines
500 B
JSON

{
"name": "backgroundtask",
"version": "1.0.0",
"description": "A simple way to run a task on the main thread without disrupting the UI",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "karmatic"
},
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
"license": "Apache-2.0",
"devDependencies": {
"husky": "^3.0.1",
"karmatic": "^1.3.1",
"webpack": "^4.37.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}