-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.57 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": "hls-ts",
"version": "0.4.4",
"description": "HLS TS parser library in Javascript",
"repository": "https://github.com/Eyevinn/hls-ts-js",
"main": "index.js",
"scripts": {
"docs": "$(npm bin)/jsdoc -c jsdoc.conf.json",
"test": "$(npm bin)/karma start karma.conf.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf dist/* docs/*",
"prebuild": "npm run clean && npm run test && npm run docs",
"build": "browserify index.js global_exports.js node_modules/logplease/src/index.js -o dist/hls-ts.js -t [ babelify --presets es2015 ] && $(npm bin)/uglifyjs dist/hls-ts.js -o dist/hls-ts.min.js",
"version": "npm run build && git add -A dist && git add -A docs",
"postversion": "git push && git push --tags"
},
"author": "Jonas Birme <[email protected]> (http://eyevinn.github.io)",
"license": "MIT",
"devDependencies": {
"babel-plugin-espower": "^2.3.1",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^13.1.1",
"browserify-istanbul": "^2.0.0",
"coveralls": "^3.0.3",
"jasmine": "^2.5.2",
"jasmine-jquery": "^2.1.1",
"jsdoc": "^3.5.5",
"karma": "^6.4.1",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-generic-preprocessor": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-jquery": "^0.1.1",
"minami": "^1.1.1",
"request": "^2.88.0",
"watchify": "^3.11.1"
},
"dependencies": {
"hexy": "^0.2.8",
"logplease": "^1.2.12"
}
}