-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "cron-validator",
"version": "1.3.1",
"description": "Validates cron expressions",
"main": "lib/index.js",
"author": "Guillaume Rochat",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuillaumeRochat/cron-validator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/GuillaumeRochat/cron-validator.git"
},
"keywords": [
"cron",
"validation"
],
"files": [
"lib/*"
],
"scripts": {
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --verbose --coverage",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.9.10"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "((\\.|/)(test))\\.(ts)$"
}
}