-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 886 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
{
"name": "string-ranger",
"version": "0.0.1",
"description": "Neat utility that converts strings to date ranges. Today => { start: { Date }, end: { Date } }",
"main": "index.js",
"scripts": {
"test": "mocha \"tests/test.js\" --reporter=spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/associatedemployers/string-ranger.git"
},
"keywords": [
"date",
"range",
"dates",
"string",
"to",
"date",
"from",
"convert"
],
"author": "James1x0",
"license": "MIT",
"bugs": {
"url": "https://github.com/associatedemployers/string-ranger/issues"
},
"homepage": "https://github.com/associatedemployers/string-ranger#readme",
"devDependencies": {
"babel-eslint": "^4.1.8",
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"dependencies": {
"lodash": "^4.3.0",
"moment": "^2.11.2"
}
}