forked from tstriker/py-datetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "ts-py-datetime",
"type": "module",
"version": "0.10.0",
"description": "Datetime handling the python way (or as close as possible), now with TypeScript",
"main": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"test": "ts-mocha 'tests/**/*.test.ts'",
"build": "tsc",
"prelint": "tsc --noemit",
"lint": "eslint --fix --config ./.eslintrc.config.cjs",
"setup": "git config --add core.hooksPath githooks && npm i"
},
"lint-staged": {
"*": "prettier -w"
},
"dependencies": {
"d3-time-format": "^4.1.0"
},
"devDependencies": {
"@types/d3-time-format": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"lint-staged": "latest",
"prettier": "latest",
"prettier-plugin-organize-imports": "latest",
"ts-mocha": "latest",
"ts-node": "latest",
"tsx": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nerwyn/ts-py-datetime.git"
},
"keywords": [
"datetime",
"date",
"time",
"timedelta",
"python",
"typescript"
],
"author": "Tom Striker",
"contributors": [
{
"name": "Tom Striker"
},
{
"name": "Nerwyn Singh"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Nerwyn/ts-py-datetime/issues"
},
"homepage": "https://github.com/Nerwyn/ts-py-datetime#readme"
}