-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 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
{
"name": "inspector.js",
"version": "1.1.12",
"description": "Javascript Library that implements MpegTS, MP4 and WebM demuxers.",
"repository": {
"type": "git",
"url": "https://github.com/epiclabs-io/inspector.js"
},
"main": "lib/inspectorjs-lib.min.js",
"browser": "lib/inspectorjs-lib.min.js",
"scripts": {
"start": "npm run server:dev",
"server:dev": "webpack-dashboard -- webpack-dev-server",
"server:prod": "cross-env NODE_ENV=production webpack-dashboard -- webpack-dev-server",
"build": "npm run build:dev",
"build:dev": "webpack --config ./webpack.config.js --progress --profile --color",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --color --bail",
"clean": "npm cache clear && rimraf -- dist",
"test": "npm run build:dev && mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"author": "[email protected]",
"license": "ISC",
"files": [
"lib/",
"samples/"
],
"devDependencies": {
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"cross-env": "^7.0.3",
"html-webpack-plugin": "^5.5.0",
"mocha": "^9.2.2",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.2",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-build-notifier": "^2.3.0",
"webpack-cli": "^4.9.2",
"webpack-dashboard": "^3.3.7",
"webpack-dev-server": "^4.7.4"
}
}