forked from emliri/inspector.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
49
50
{
"name": "inspector.js",
"version": "1.1.6",
"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 --display-error-details --display-cached",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached --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",
"lint": "tslint --project ."
},
"author": "[email protected]",
"license": "ISC",
"files": [
"lib/",
"samples/"
],
"devDependencies": {
"awesome-typescript-loader": "^3.2.1",
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.29.0",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"tslint": "^5.1.0",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-build-notifier": "^0.1.14",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "2.7.1"
},
"dependencies": {}
}