-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.34 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
{
"name": "hijri",
"version": "0.5.0",
"description": "Gregorian to Hijri Date conversion on NodeJS ",
"main": "hijri-date.js",
"scripts": {
"test": "grunt test",
"prepublish": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/arabiaweather/hijri-date.git"
},
"keywords": [
"hijri",
"calendar",
"date",
"convertor",
"conversion",
"convert",
"gregorian"
],
"devDependencies": {
"mocha": "~1.12.0",
"chai": "~1.8.0",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-contrib-watch": "~0.5.2",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-jshint": "~0.7.2",
"grunt-shell": "~0.4.0"
},
"jshintConfig": {
"camelcase": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"plusplus": true,
"quotmark": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"asi": true,
"eqnull": true,
"laxbreak": true,
"laxcomma": true,
"node": true
},
"author": "Yousef Wadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/arabiaweather/hijri-date/issues"
},
"homepage": "https://github.com/arabiaweather/hijri-date"
}