forked from melvinsembrano/date-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.18 KB
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
{
"name": "date-diff",
"main": "date-diff.js",
"description": "DateDiff is a minimalized Javascript date arithmetic extension.",
"version": "0.2.1",
"keywords": [
"DateDiff",
"Date diff",
"date arthmetic",
"Javascript Date",
"date-diff",
"subtract dates"
],
"repository": {
"type": "git",
"url": "git@github.com:melvinsembrano/date-diff.git"
},
"author": "Melvin Sembrano <melvinsembrano@gmail.com> (https://github.com/melvinsembrano/date-diff)",
"license": "MIT",
"devDependencies": {
"coffeescript": "^2.2.3",
"easy-date": "^1.0.0",
"grunt": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-contrib-coffee": "^2.0.0",
"grunt-contrib-jasmine": "^2.0.2",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-karma": "^3.0.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^3.0.0",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start --single-run --browsers PhantomJS",
"compile": "coffee --compile --output . src/",
"build": "npm run compile && grunt"
}
}