-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "cron-fns",
"version": "0.0.0-development",
"main": "./cron-fns.js",
"typings": "./cron-fns.d.ts",
"author": "Daniel Bradley",
"license": "MIT",
"homepage": "https://www.danielbradley.net/cron-fns/",
"repository": {
"type": "git",
"url": "https://github.com/danielrbradley/cron-fns.git"
},
"bugs": {
"url": "https://github.com/danielrbradley/cron-fns/issues"
},
"keywords": [
"cron",
"crontab",
"time",
"date",
"schedule"
],
"scripts": {
"clean": "rimraf *.d.ts *.js *.map tests/*.d.ts tests/*.js tests/*.map *.tgz coverage documentation",
"build": "tsc",
"test": "jest",
"stryker": "stryker run",
"doc": "typedoc --out ./documentation/ ./*.ts && touch documentation/.nojekyll",
"commit": "cz",
"semantic-release": "semantic-release"
},
"files": [
"*.js",
"*.js.map",
"*.d.ts"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@stryker-mutator/core": "^4.1.2",
"@stryker-mutator/jest-runner": "^4.1.2",
"@types/jest": "^26.0.15",
"babel-jest": "^26.6.1",
"commitizen": "^4.2.2",
"jest": "^26.6.1",
"mockdate": "^3.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.2",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"jest": {
"timers": "modern"
}
}