-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "datetoken",
"version": "1.1.5",
"description": "Parse relative datetime tokens into date objects",
"main": "./index.js",
"types": "./index.d.ts",
"directories": {
"test": "test"
},
"engines": {
"node": ">=8.10"
},
"scripts": {
"clean": "rm -rf ./models ./utils ./lexer ./parser ./ast ./exceptions ./token",
"build": "npm run clean && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"test": "TZ='UTC' npx jest --runInBand",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonirico/datetoken.js.git"
},
"keywords": [
"relative",
"date",
"token",
"presets",
"datetime",
"parser",
"now",
"yesterday",
"last week"
],
"author": "sonirico",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonirico/datetoken.js/issues"
},
"homepage": "https://github.com/sonirico/datetoken.js#readme",
"dependencies": {
"date-fns": "^4.1.0"
},
"devDependencies": {
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"node-notifier": "^10.0.1",
"minimatch": "^10.0.1",
"prettier": "^3.4.2",
"set-value": ">=4.1.0",
"ts-jest": "^29.2.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.7.2"
}
}