-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.84 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@viacomcbs/broadcast-calendar",
"version": "3.7.0",
"description": "Broadcast Calendar Dates Functions",
"author": "ViacomCBS",
"license": "Apache-2.0",
"bin": {
"broadcast-calendar": "./bin/broadcast-calendar.js"
},
"main": "./lib/index.js",
"module": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"scripts": {
"bin": "node ./bin/broadcast-calendar.js",
"prebuild": "rimraf lib",
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"lint": "eslint .",
"precommit": "npm run lint",
"test": "npm run build && ava",
"test:coverage": "c8 ava",
"format": "prettier --loglevel error --write \"./src/**/*.ts\" \"./test.js\" \"./rollup.config.ts\" \"*.md\"",
"format:staged": "git-format-staged -f 'prettier --ignore-unknown --loglevel error --stdin --stdin-filepath \"{}\"' .",
"release": "npm run build && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ViacomInc/broadcast-calendar.git"
},
"keywords": [
"date",
"dates",
"broadcast",
"calendar"
],
"peerDependencies": {
"luxon": "^3.0.0"
},
"private": false,
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^12.0.0",
"@types/luxon": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"ansi-regex": ">=5.0.1",
"ava": "^6.0.0",
"c8": "^10.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"git-format-staged": "^3.0.0",
"husky": "^9.0.0",
"release-it": "^17.0.0",
"rimraf": "^6.0.0",
"rollup": "^4.0.0",
"rollup-plugin-node-externals": "^7.0.0",
"ts-node": "^10.2.0",
"typescript": "^5.0.0"
}
}