-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "date-ext",
"version": "1.1.0",
"description": "Library for extending JavaScript dates",
"homepage": "https://github.com/neocotic/date-ext",
"bugs": {
"url": "https://github.com/neocotic/date-ext/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "[email protected]",
"url": "https://neocotic.com"
},
"license": "MIT",
"keywords": [
"date",
"extend",
"format",
"iso"
],
"repository": {
"type": "git",
"url": "https://github.com/neocotic/date-ext.git"
},
"devDependencies": {
"eslint-config-notninja": "^0.2.3",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-qunit": "^2.0.0",
"grunt-contrib-uglify": "^3.1.0",
"grunt-eslint": "^20.1.0",
"load-grunt-tasks": "^3.5.2",
"qunitjs": "^2.4.0"
},
"main": "lib/date-ext.js",
"scripts": {
"build": "grunt build",
"ci": "grunt ci",
"test": "grunt test"
}
}