-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
57
58
59
60
61
62
63
64
{
"name": "crontext",
"version": "0.2.11",
"description": "Simple utility for parsing human text into a cron schedule.",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "node ./scripts/jest-runner.js --config jest.config.js --watch",
"test:ci": "node ./scripts/jest-runner.js --config jest.config.js src __tests__ --suite=smoke,repeat",
"coverage": "yarn test:ci -- --coverage",
"test:smoke": "node ./scripts/jest-runner.js --config jest.config.js --suite=smoke,repeat __tests__",
"build": "rm -rf lib && tsc",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prepare": "yarn build && husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rautio/crontext.git"
},
"keywords": [
"cron",
"schedule",
"human",
"readable",
"text",
"generate",
"expression"
],
"author": "Oskari Rautiainen (rautio)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rautio/crontext/issues"
},
"lint-staged": {
"**/*.{js,ts,json}": [
"eslint . --fix",
"prettier --write ."
]
},
"homepage": "https://github.com/rautio/crontext#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "*",
"yargs": "^17.7.2",
"yargs-unparser": "^2.0.0"
}
}