-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 885 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
{
"name": "headless-datepicker",
"version": "1.0.1",
"description": "Provides the logic for a datepicker. Apply your own UI on top.",
"repository": {
"type": "git",
"url": "https://github.com/TBear79/headless-datepicker"
},
"main": "dist/headless-datepicker.js",
"scripts": {
"start": "tsc --watch",
"test": "mocha dist/headless-datepicker.spec.js",
"test:watch": "mocha dist/headless-datepicker.spec.js -w"
},
"keywords": [
"headless",
"datepicker",
"headless",
"calendar",
"datepicker",
"calendar"
],
"author": "Thorbjørn Jelgren (www.therightfoot.dk)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/moment": "^2.13.0",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"typescript": "^2.3.2"
},
"dependencies": {
"moment": "^2.18.1"
}
}