-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.64 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.64 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
84
85
86
87
88
89
90
91
92
93
{
"name": "thumbcoil",
"version": "1.2.3",
"description": "Tools for inspecting MPEG2TS and MP4 files and the codec bitstreams therein",
"main": "es5/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all -p build:*",
"build:js": "npm-run-all build:js:babel build:js:browserify build:js:bannerize build:js:uglify",
"build:js:babel": "babel src -d es5",
"build:js:bannerize": "bannerize dist/thumbcoil.js --banner=scripts/banner.ejs",
"build:js:browserify": "browserify . -s thumbcoil -o dist/thumbcoil.js",
"build:js:uglify": "uglifyjs dist/thumbcoil.js --comments --mangle --compress -o dist/thumbcoil.min.js",
"change": "chg add",
"clean": "rimraf dist es5 && mkdirp dist es5",
"docs": "npm-run-all docs:*",
"docs:api": "jsdoc src -r -d docs/api",
"docs:toc": "doctoc README.md",
"lint": "vjsstandard",
"start": "babel-node scripts/server.js",
"version": "babel-node scripts/version.js",
"watch": "npm-run-all -p watch:*",
"watch:js": "npm-run-all -p watch:js:babel watch:js:browserify",
"watch:js:babel": "babel src --watch -d es5",
"watch:js:browserify": "watchify . -t browserify-shim -v -s thumbcoil -o dist/thumbcoil.js",
"postversion": "babel-node scripts/postversion.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/videojs/thumbcoil.git"
},
"author": "Brightcove, Inc.",
"contributors": [
{
"name": "Jon-Carlos Rivera",
"email": "jon.carlos.rivera@gmail.com",
"url": "http://jon-carlos.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/videojs/thumbcoil/issues"
},
"homepage": "https://github.com/videojs/thumbcoil#readme",
"keywords": [],
"browserify": {
"transform": [
"browserify-shim",
"browserify-versionify"
]
},
"browserify-shim": {},
"vjsstandard": {
"ignore": [
"dist",
"docs",
"es5"
]
},
"files": [
"CONTRIBUTING.md",
"index.html",
"debug/",
"dist/",
"docs/",
"es5/",
"scripts/",
"src/"
],
"devDependencies": {
"babel": "^5.8.35",
"babelify": "^6.4.0",
"bannerize": "^1.0.2",
"bluebird": "^3.2.2",
"browserify": "^12.0.2",
"browserify-shim": "^3.8.12",
"browserify-versionify": "^1.0.6",
"budo": "^8.0.4",
"chg": "^0.3.2",
"doctoc": "^0.15.0",
"glob": "^6.0.3",
"global": "^4.3.0",
"jsdoc": "^3.4.0",
"mkdirp": "^0.5.1",
"nodemon": "^1.9.1",
"npm-run-all": "^4.1.5",
"rimraf": "^2.5.1",
"uglify-js": "^2.6.1",
"videojs-standard": "^4.0.0",
"watchify": "^3.6.0"
}
}