-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
44
45
{
"name": "simple-datejs",
"version": "1.0.0",
"devDependencies": {
"chai": "^3.1.0",
"mocha": "^2.2.5"
},
"scripts": {
"test": "mocha -R spec --recursive"
},
"description": "for use in place of javascript date object which does not carry the time component",
"main": "lib/SimpleDate.js",
"directories": {
"test": "test",
"lib": "lib",
"baseURL": "lib",
"packages": "lib/jspm_packages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weagle08/simple-date.git"
},
"keywords": [
"date",
"simple-date"
],
"author": "weagle08 <[email protected]> (https://github.com/weagle08)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/weagle08/simple-date/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/weagle08/simple-date/issues"
},
"homepage": "https://github.com/weagle08/simple-date#readme",
"jspm": {
"directories": {
"lib": "lib"
},
"main": "SimpleDate.js",
"devDependencies": {}
}
}