-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.5 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.5 KB
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
104
105
106
107
108
109
110
{
"name": "@jmjhox/date-simplify",
"version": "2.0.0",
"private": false,
"author": {
"name": "JMJHOX",
"email": "josemiguelaparicio507@gmail.com"
},
"types": "dist/date-simplify/index.d.ts",
"main": "dist/date-simplify/index.js",
"files": [
"dist/date-simplify"
],
"scripts": {
"lint": "eslint --ext .tsx,.ts,.js .",
"typescript": "tsc --noEmit",
"test:date-simplify": "jest --coverage ",
"prebuild": "del dist/ types/",
"babel": "babel src --out-dir lib --extensions '.tsx,.ts,.js' --ignore '**/tests/**' --source-maps --delete-dir-on-start",
"build:dev": "tsc --jsx react --noEmit",
"build:ci": "tsc --jsx react"
},
"dependencies": {
"core-js": "3.20.3",
"date-fns": "2.28.0",
"ts-node": "10.6.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^27.4.0",
"del-cli": "^3.0.1",
"eslint": "^7.2.0",
"eslint-config-satya164": "^3.1.7",
"jasmine": "4.0.2",
"jest": "^26.0.1",
"karma": "^6.3.15",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.1",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-typescript": "^5.5.3",
"prettier": "^2.0.5",
"tslib": "^2.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/JMJHOX/date-simplify.git"
},
"keywords": [
"date",
"date-time",
"time",
"date-simplify",
"simplified-date",
"simplied",
"date",
"calculator",
"ng",
"angular",
"format",
"node",
"react",
"typescript",
"javascript",
"library",
"ECMAScript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JMJHOX/date-simplify/issues"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/types/",
"<rootDir>/lib/"
],
"testRegex": "/tests/.*\\.(test|spec).ts"
},
"eslintConfig": {
"extends": "satya164"
},
"eslintIgnore": [
"node_modules/",
"coverage/",
"lib/"
],
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"browserslist": [
">1%",
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari versions",
"not dead",
"not ie <= 11",
"not op_mini all",
"not android <= 4.4",
"not samsung <= 4"
]
}