-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
44 lines (36 loc) · 823 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
37
38
39
40
41
42
43
44
{
"name": "moment-strftime",
"version": "0.5.0",
"author": "Benjamin Oakes <hello@benjaminoakes.com> (http://www.benjaminoakes.com/)",
"description": "moment-strftime adds strftime to Moment.js",
"keywords": [
"moment",
"date",
"strftime"
],
"homepage": "https://github.com/benjaminoakes/moment-strftime",
"bugs": "https://github.com/benjaminoakes/moment-strftime/issues",
"repository": {
"type": "git",
"url": "https://github.com/benjaminoakes/moment-strftime.git"
},
"license": "MIT",
"licenses": [
{
"type": "MIT"
}
],
"main": "./lib/moment-strftime.js",
"engines": {
"node": "*"
},
"scripts": {
"test": "jasmine-node spec"
},
"dependencies": {
"moment": "^2.11.2"
},
"devDependencies": {
"jasmine-node": "1.14.5"
}
}