-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 924 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
{
"name": "fiscal-calendar",
"version": "1.1.0",
"description": "A library for working with Disney fiscal calendar dates",
"author": "Geoffrey Booth <geoffrey.booth@disney.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:disney/fiscal-calendar.git"
},
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "coffee --bare --no-header --output ./dist ./src",
"test": "ava",
"dev": "coffee --bare --no-header --output ./dist --watch ./src & ava --watch",
"prepare": "npm run build"
},
"dependencies": {
"@date/holidays-us": "^0.4.0",
"luxon": "^2.5.2"
},
"devDependencies": {
"ava": "4.0.1",
"coffeescript": "^2.6.1"
},
"ava": {
"extensions": [
"coffee"
],
"require": [
"coffeescript/register"
],
"files": [
"tests/**/*.coffee"
]
}
}