-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 1.95 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
{
"name": "@date-js/clever-date",
"version": "0.0.0-version",
"description": "A Javascript module to show an intelligent date refreshed at regular intervals.",
"main": "dist/clever-date.js",
"scripts": {
"prepublishOnly": "webpack --mode production",
"eslint": "eslint ./src --ext .ts,.js,.d.ts",
"eslint-fix": "eslint ./src --ext .ts,.js,.d.ts --fix",
"watch": "webpack --watch",
"build": "webpack",
"start:dev": "webpack serve --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/date-js/clever-date.git"
},
"keywords": [
"date",
"hour",
"day",
"month",
"year",
"intelligent",
"clever",
"refresh",
"realtime",
"human",
"pretty",
"time",
"update",
"tiny",
"light"
],
"files": [
"dist"
],
"typings": "dist/types/index.d.ts",
"author": "Adrien Peyre",
"license": "MIT",
"bugs": {
"url": "https://github.com/date-js/clever-date/issues"
},
"homepage": "https://github.com/date-js/clever-date#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/node": "^12.20.15",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-loader": "^8.2.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-promise": "^4.3.1",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.41.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.3"
},
"dependencies": {
"@date-js/date-formatter": "^1.0.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
}
}