forked from 18F/us-federal-holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 971 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
{
"name": "@18f/us-federal-holidays",
"version": "1.4.0",
"description": "All about US federal holidays",
"main": "bin/index.js",
"keywords": [
"federal",
"holiday",
"holidays",
"date"
],
"author": "Greg Walker <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/18F/us-federal-holidays.git"
},
"scripts": {
"lint": "eslint index.test.js 'src/**/*.js'",
"build": "babel src -d bin --no-comments",
"test": "tap --reporter=spec index.test.js"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"license": "CC0-1.0",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"prettier": "^1.17.0",
"tap": "^13.1.8"
},
"dependencies": {}
}