This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.83 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
{
"name": "mux-player-sdk-framework",
"version": "2.3.0",
"author": "Mux, Inc.",
"description": "Mux analytics plugin for Samsung Tizen AVPlay applications",
"main": "dist/tizen-mux.js",
"license": "MIT",
"scripts": {
"npm:audit": "npm audit --audit-level high",
"clean": "rm -rf build dist",
"mkdirs": "mkdir -p build dist",
"lint": "eslint 'src/*.js' --quiet",
"test": "npm-run-all lint",
"package": "npm-run-all clean mkdirs lint test package:build package:remove-requirejs-support package:bannerize",
"package:build": "webpack --config webpack.prod.js",
"link": "ln -f ./build/tizen-mux.js ./app/tizenPlayer/js/tizen-mux.js",
"package:devbuild": "webpack --config webpack.dev.js && npm run link",
"package:remove-requirejs-support": "echo '(function(){var define=false;' > dist/tizen-mux.js && cat build/tizen-mux.js >> dist/tizen-mux.js && echo '})();' >> dist/tizen-mux.js",
"package:bannerize": "bannerize dist/tizen-mux.js --banner=scripts/banner.ejs",
"start": "webpack-dev-server --open --config webpack.dev.js",
"deploy": "npm run package && babel-node scripts/deploy.js"
},
"dependencies": {},
"devDependencies": {
"aws-sdk": "^2.2.37",
"babel-cli": "^6.5.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.5.0",
"bannerize": "^1.0.2",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"global": "^4.3.0",
"mux-embed": "^4.2.0",
"npm-run-all": "^2.2.0",
"nsp": "^2.4.0",
"path": "^0.12.7",
"sinon": "^3.0.0",
"uglify-js": "^2.5.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-auto-inject-version": "^1.0.0",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0"
}
}