-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 2.01 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
62
63
64
65
66
67
68
69
70
{
"name": "scte35",
"version": "0.6.0",
"description": "",
"main": "build/scte35.js",
"types": "build/scte35.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"bin": {
"scte35": "scripts/scte35"
},
"scripts": {
"beautify": "prettier --write \"**/*.{json,css,scss,yml,ts,js}\"",
"clean": "rimraf build",
"cover": "nyc npm test",
"docs": "typedoc --name 'SCTE35 JS' --entryPointStrategy expand ./src --out jsdoc ./src",
"lint": "eslint . --ext .ts",
"test": "mocha --require ts-node/register --watch-extensions ts,tsx __tests__/*.spec.ts",
"build": "npm run clean && tsc",
"postpublish": "npm run clean",
"prepublishOnly": "npm run build && npm run docs"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Comcast/scte35-js.git"
},
"author": "Comcast VIPER",
"keywords": [
"cli",
"scte35"
],
"contributors": [
"Andrei Hetman <[email protected]",
"Eric Stobbart <[email protected]"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Comcast/scte35-js/issues"
},
"homepage": "https://github.com/Comcast/scte35-js#readme",
"devDependencies": {
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"chai": "4.3.10",
"eslint": "8.55.0",
"husky": "8.0.3",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "3.1.1",
"rimraf": "5.0.5",
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"typedoc": "0.25.4",
"typescript": "5.3.3"
},
"dependencies": {
"@types/node": "20.10.4",
"arg": "5.0.2",
"buffer": "6.0.3",
"esm": "3.2.25",
"inquirer": "9.2.12"
}
}