-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.26 KB
/
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
{
"name": "nyse-holidays",
"version": "1.2.0",
"description": "Get all NYSE markets observe U.S. holidays",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/tsekityam/nyse-holidays.git",
"author": "Tse Kit Yam <[email protected]>",
"license": "MIT",
"dependencies": {
"dayjs": "^1.11.6"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@tsconfig/recommended": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"codecov": "^3.8.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"scripts": {
"prepack": "tsc",
"lint": "eslint --ignore-path '.gitignore' '**/*.ts'",
"format": "prettier --ignore-unknown --ignore-path '.gitignore' --write '**/*'",
"test": "nyc mocha",
"posttest": "nyc report --reporter=text-lcov | codecov --pipe"
},
"files": [
"dist"
],
"keywords": [
"holidays",
"nyse"
]
}