-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "time-speak",
"version": "1.9.0",
"description": "A natural language parser for dates, times and intervals.",
"keywords": [
"natural language",
"parser",
"date",
"time",
"relative",
"date parser"
],
"homepage": "https://github.com/f3rno64/time-speak",
"bugs": {
"url": "https://github.com/f3rno64/time-speak/issues"
},
"repository": "https://github.com/f3rno64/time-speak",
"license": "MIT",
"author": "Cris Mihalache <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "NODE_PATH=./src tsc -p tsconfig.json",
"docs": "npx typedoc --out docs src && cp LICENSE.md docs/LICENSE.md && cp CHANGELOG.md docs/CHANGELOG.md",
"docs:md": "pnpm build && rm -rf DOCUMENTATION.md && ./node_modules/.bin/jsdoc2md -f 'dist/**/*.js' > DOCUMENTATION.md",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm lint:markdownlint && pnpm lint:eslint",
"lint:eslint": "eslint -f stylish --ext .json,.ts,.tsx,.js,.jsx package.json src/**/*",
"lint:eslint:fix": "eslint -f stylish --fix --ext .json,.ts,.tsx,.js,.jsx package.json src/**/*",
"lint:fix": "pnpm lint:markdownlint:fix && pnpm lint:eslint:fix",
"lint:markdownlint": "markdownlint README.md",
"lint:markdownlint:fix": "markdownlint --fix README.md",
"prepare": "husky",
"prepare-release": "pnpm lint && pnpm test && pnpm build && pnpm docs && git add docs && pnpm docs:md",
"prepublish": "pnpm build",
"release": "pnpm prepare-release && pnpm update-version && git push --follow-tags origin main",
"test": "NODE_PATH=./src NODE_ENV=test mocha",
"test:coverage": "NODE_PATH=./src NODE_ENV=test nyc mocha",
"test:watch": "NODE_PATH=./src NODE_ENV=test nyc mocha --watch",
"update-deps": "updates -u -g -c",
"update-version": "standard-version -a"
},
"dependencies": {
"lodash": "^4.17.21",
"numbers-from-words": "^0.0.8",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@commitlint/format": "^18.6.0",
"@commitlint/types": "^18.6.0",
"@eslint/js": "^8.56.0",
"@fintechstudios/eslint-plugin-chai-as-promised": "^3.1.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/chai-almost": "^1.0.3",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.3.10",
"chai-almost": "^1.0.1",
"eslint": "^8.56.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-pure": "github:purely-functional/eslint-plugin-pure",
"eslint-plugin-regexp": "^2.2.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^51.0.0",
"eslint-plugin-write-good-comments": "^0.2.0",
"husky": "^9.0.10",
"jsdoc-to-markdown": "^8.0.1",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.39.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"remark": "^15.0.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"updates": "^15.1.1"
},
"engines": {
"node": ">=16.0.0"
}
}