-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 2.02 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.5.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.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chai": "^4.3.8",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.25.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/node": "^20.5.6",
"arg": "^5.0.2",
"buffer": "^6.0.3",
"esm": "^3.2.25",
"inquirer": "^9.2.10"
}
}