-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@modcord/clock",
"version": "1.0.0",
"description": "A clock that cycles through routines at certain intervals and fires events with the data originally submited.",
"main": "lib/index.js",
"scripts": {
"build": "tsc --build tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"format-with-js": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ModCord/clock.git"
},
"keywords": [
"clock",
"time",
"schedule",
"event"
],
"author": "MrAugu#7917",
"license": "MIT",
"bugs": {
"url": "https://github.com/ModCord/clock/issues"
},
"homepage": "https://github.com/ModCord/clock#readme",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}