schedule-later/package.json

19 lines
434 B
JSON
Raw Normal View History

2023-07-17 15:54:30 -05:00
{
"name": "schedule-later",
2023-07-17 17:57:54 -05:00
"version": "1.0.5",
"types": "dist/Scheduler.d.ts",
2023-07-17 15:54:30 -05:00
"main": "dist/Scheduler.js",
"author": "Nightness",
"scripts": {
"build": "tsc",
2023-07-17 17:57:54 -05:00
"pretest": "tsc",
2023-07-17 15:54:30 -05:00
"test": "./node_modules/.bin/jest --verbose",
2023-07-17 17:57:54 -05:00
"prepublish": "tsc && npm run test"
2023-07-17 15:54:30 -05:00
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^18.11.18",
"jest": "^29.6.1",
"typescript": "^4.6.4"
}
}