schedule-later/package.json

23 lines
537 B
JSON
Raw Normal View History

2023-07-17 15:54:30 -05:00
{
"name": "schedule-later",
2023-07-17 19:45:31 -05:00
"version": "1.1.0",
2023-07-17 17:57:54 -05:00
"types": "dist/Scheduler.d.ts",
2023-07-17 15:54:30 -05:00
"main": "dist/Scheduler.js",
"author": "Nightness",
2023-07-17 18:56:34 -05:00
"repository": {
"type": "git",
"url": "https://github.com/nightness/schedule-later.git"
},
2023-07-17 15:54:30 -05:00
"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",
2023-07-17 19:45:31 -05:00
"typescript": "^5.1.6"
2023-07-17 15:54:30 -05:00
}
}