-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "jalali-date",
"version": "1.1.5",
"description": "A Jalali to Gregorian converter with support of formatting output",
"scripts": {
"start": "webpack --progress --colors --watch --env dev",
"lint": "eslint ./src --ext .js --cache",
"test": "jest",
"watch": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.pro.js && webpack --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "[email protected]:arashm/JDate.git"
},
"main": "lib/jdate.js",
"keywords": [
"jalali",
"sun",
"shamsi",
"calendar",
"gregorian",
"converter"
],
"author": "Arash Mousavi",
"license": "MIT",
"bugs": {
"url": "https://github.com/arashm/JDate/issues"
},
"homepage": "https://github.com/arashm/JDate",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-jest": "^27.2.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^24.0",
"jest": "^27.2.0",
"jest-cli": "^27.2.0",
"jest-date-mock": "^1.0.7",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.0.0"
},
"jest": {
"setupFiles": [
"jest-date-mock"
]
}
}