-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
49 lines (49 loc) · 1015 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
45
46
47
48
49
{
"name": "twix",
"version": "1.3.0",
"description": "Twix.js allows you to work with date ranges",
"homepage": "http://icambron.github.io/twix.js/",
"author": "Isaac Cambron",
"keywords": [
"twix",
"date",
"date range"
],
"peerDependencies": {
"moment": ">= 2.10.0"
},
"devDependencies": {
"benchmark": "latest",
"blanket": "latest",
"coffee-script": "latest",
"coffeelint": "latest",
"coveralls": "latest",
"mocha": "latest",
"mocha-lcov-reporter": "latest",
"moment": ">= 2.10.0",
"requirejs": "latest",
"uglify-js": "latest"
},
"main": "dist/twix",
"scripts": {
"test": "mocha -R dot test/twix.spec.js"
},
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/icambron/twix.js.git"
},
"bugs": {
"url": "https://github.com/icambron/twix.js/issues"
},
"license": "MIT",
"config": {
"blanket": {
"pattern": [
"dist/twix.js"
]
}
}
}