-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.35 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.35 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@adventr/m3u8-codec",
"version": "1.0.0",
"description": "m3u8 parser & generator",
"main": "dist/m3u8-codec.cjs.js",
"module": "dist/m3u8-codec.es.js",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git@github.com:adventrtv/m3u8-codec.git"
},
"scripts": {
"prepare": "npm run build",
"build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
"build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
"build-test-data": "node scripts/m3u8.js",
"build": "npm-run-all -s clean build-test-data -p build:*",
"build:js": "rollup -c scripts/rollup.config.js",
"clean": "shx rm -rf ./dist ./test/dist && shx mkdir -p ./dist ./test/dist",
"lint": "vjsstandard",
"start": "npm-run-all -p server watch",
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
"test": "npm-run-all lint build-test test:*",
"test:browser": "karma start scripts/karma.conf.js",
"test-node": "npm-run-all build-test test:node",
"test:node": "qunit test/dist/bundle.js",
"posttest": "shx cat test/dist/coverage/text.txt",
"watch": "npm-run-all -p watch:*",
"watch:js": "npm run build:js -- -w"
},
"contributors": [
{
"name": "imbcmdth",
"github": "https://github.com/imbcmdth"
}
],
"author": "Ossum Technology Inc. (dba Adventr)",
"license": "Apache-2.0",
"vjsstandard": {
"ignore": [
"dist",
"docs",
"test/dist"
]
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@videojs/vhs-utils": "^2.2.1",
"global": "^4.3.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@videojs/generator-helpers": "~1.2.0",
"babel-eslint": "^10.1.0",
"karma": "^4.0.0",
"rollup": "^1.19.4",
"sinon": "^7.2.2",
"videojs-generate-karma-config": "~5.3.1",
"videojs-generate-rollup-config": "~5.0.1",
"videojs-generator-verify": "~2.0.0",
"videojs-standard": "^8.0.3"
},
"generator-videojs-plugin": {
"version": "7.7.3"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"doctoc --notitle",
"git add"
]
}
}