1{
2  "name": "cron-validator",
3  "version": "1.1.1",
4  "description": "Validates cron expressions",
5  "main": "lib/index.js",
6  "author": "Guillaume Rochat",
7  "license": "MIT",
8  "bugs": {
9    "url": "https://github.com/TheCloudConnectors/cron-validator/issues"
10  },
11  "repository": {
12    "type": "git",
13    "url": "https://github.com/TheCloudConnectors/cron-validator.git"
14  },
15  "keywords": [
16    "cron",
17    "validation"
18  ],
19  "files": [
20    "lib/*"
21  ],
22  "scripts": {
23    "lint": "tslint -t stylish --project \"tsconfig.json\"",
24    "test": "jest --verbose --coverage",
25    "build": "tsc",
26    "prepublish": "npm run lint && npm run test && npm run build"
27  },
28  "devDependencies": {
29    "@types/jest": "^24.0.23",
30    "jest": "^24.9.0",
31    "ts-jest": "^24.2.0",
32    "ts-node": "^8.5.4",
33    "tslint": "^5.20.1",
34    "tslint-config-standard": "^8.0.1",
35    "typescript": "^3.7.3"
36  },
37  "jest": {
38    "moduleFileExtensions": [
39      "js",
40      "ts"
41    ],
42    "transform": {
43      "^.+\\.ts$": "ts-jest"
44    },
45    "testRegex": "((\\.|/)(test))\\.(ts)$"
46  }
47}
48