mirror of
https://github.com/samsonjs/strftime.git
synced 2026-03-25 09:05:48 +00:00
move lib/index.js to strftime.js
This commit is contained in:
parent
e18c7abf88
commit
8791c074cc
4 changed files with 4 additions and 12 deletions
|
|
@ -4,6 +4,6 @@
|
|||
"description": "strftime date formatting",
|
||||
"keywords": ["strftime", "format", "date", "time"],
|
||||
"version": "0.5.1",
|
||||
"main": "lib/index.js",
|
||||
"scripts": ["lib/index.js"]
|
||||
"main": "strftime.js",
|
||||
"scripts": ["strftime.js"]
|
||||
}
|
||||
|
|
|
|||
10
package.json
10
package.json
|
|
@ -18,10 +18,7 @@
|
|||
"email": "sami@samhuri.net",
|
||||
"url": "https://github.com/samsonjs/strftime/issues"
|
||||
},
|
||||
"directories": {
|
||||
"lib": "./lib"
|
||||
},
|
||||
"main": "./lib/index",
|
||||
"main": "./strftime",
|
||||
"engines": {
|
||||
"node": ">=0.2.0"
|
||||
},
|
||||
|
|
@ -31,11 +28,6 @@
|
|||
"url": "http://github.com/samsonjs/strftime/raw/master/LICENSE"
|
||||
}
|
||||
],
|
||||
"component": {
|
||||
"scripts": {
|
||||
"strftime": "./lib/index.js"
|
||||
}
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"optionalDependencies": {}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
// - look for edge cases
|
||||
|
||||
var assert = require('assert')
|
||||
, lib = require('../lib')
|
||||
, lib = require('../strftime')
|
||||
|
||||
// Tue, 07 Jun 2011 18:51:45 GMT
|
||||
, Time = new Date(1307472705067)
|
||||
|
|
|
|||
Loading…
Reference in a new issue