-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 884 Bytes
/
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
{
"name": "dateio",
"version": "1.3.8",
"description": "A lightweight JavaScript date library for display and formatting dates.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint index.js",
"lint:jest": "eslint test/",
"test": "jest",
"coverage": "open ./coverage/lcov-report/index.html"
},
"keywords": [
"date",
"formatter",
"lightweight",
"date",
"library"
],
"author": "Tyler Chao",
"license": "MIT",
"repository": "cz848/dateio",
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^28.1.3",
"mockdate": "^2.0.5",
"moment": "^2.24.0"
}
}