This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.63 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
{
"name": "@raddishiow/react-relativetime",
"version": "1.1.1",
"description": "React Component which takes a JSDate object and returns a localised string describing the date relative to now.",
"keywords": [
"react",
"relative",
"time",
"luxon",
"date"
],
"main": "lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "yarn run build:babel && yarn run build:tsc-defs",
"test": "jest",
"build:babel": "babel src/ -d lib --extensions \".ts,.tsx\" --source-maps",
"build:tsc-defs": "tsc",
"typesync": "typesync"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RaddishIoW/React-RelativeTime.git"
},
"author": "Adam Radestock",
"license": "ISC",
"bugs": {
"url": "https://github.com/RaddishIoW/React-RelativeTime/issues"
},
"homepage": "https://github.com/RaddishIoW/React-RelativeTime#readme",
"dependencies": {
"@babel/runtime": "^7.12.5",
"luxon": "^1.25.0",
"react": "^16.0.0 || ^17.0.1 || ^17.0.1",
"react-dom": "^16.0.0 || ^17.0.1 || ^17.0.1"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "11.2.7",
"@types/babel__core": "7.1.19",
"@types/babel__plugin-transform-runtime": "7.9.2",
"@types/babel__preset-env": "7.9.2",
"@types/eslint": "7.29.0",
"@types/jest": "26.0.24",
"@types/luxon": "1.27.1",
"@types/react": "17.0.44",
"@types/react-dom": "17.0.15",
"@types/testing-library__jest-dom": "5.14.3",
"@types/testing-library__react": "10.2.0",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"documentation": "13.2.5",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-config-standard-react": "11.0.1",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-compat": "3.13.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-radar": "0.2.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"jest": "26.6.3",
"ts-jest": "26.5.6",
"ts-node": "10.7.0",
"typescript": "4.6.3",
"typesync": "0.9.0"
}
}