-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "aws-cron-parser",
"version": "1.1.12",
"description": "A util to parse cron expressions used by AWS services",
"keywords": [
"aws",
"cloudwatch",
"cron",
"parser"
],
"license": "MIT",
"author": "Vinh Tuong Nguyen",
"repository": {
"type": "git",
"url": "https://github.com/beemhq/aws-cron-parser.git"
},
"type": "commonjs",
"main": "built/index.js",
"types": "built/index.d.ts",
"files": [
"built/index*",
"built/lib/*"
],
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"tsc": "tsc",
"test": "jest built/tests/**",
"prepublishOnly": "tsc",
"benchmark": "node built/benchmark.js"
},
"dependencies": {
"number-to-words": "^1.2.4"
},
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/jest": "^26.0.16",
"@types/number-to-words": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"benchmark": "^2.1.4",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"jest": "^26.4.0",
"prettier": "^2.2.1",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}