forked from moment/moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·37 lines (37 loc) · 972 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
{
"name": "moment",
"version": "1.6.2",
"description": "Moment.js is a javascript date library that helps create, manipulate, and format dates without extending the `Date` prototype.",
"homepage": "https://github.com/timrwood/moment",
"author": "Tim Wood <[email protected]> (http://timwoodcreates.com/)",
"keywords": [
"moment",
"date",
"ender"
],
"main": "./moment.js",
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/timrwood/moment.git"
},
"bugs": {
"url": "https://github.com/timrwood/moment/issues"
},
"licenses" : [
{
"type" : "MIT"
}
],
"devDependencies" : {
"jshint" : "latest",
"uglify-js" : "latest",
"nodeunit" : "latest"
},
"scripts": {
"test": "nodeunit ./test/moment ./test/lang"
},
"ender": "./ender.js"
}