-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "codem-isoboxer",
"version": "0.3.7",
"description": "A lightweight JavaScript MP4 (MPEG-4, ISOBMFF) file/box parser.",
"keywords": [
"mp4", "mpeg-4", "mpeg4", "isobmff", "parser"
],
"homepage": "https://github.com/madebyhiro/codem-isoboxer",
"main": "dist/iso_boxer.js",
"repository": {
"type": "git",
"url": "https://github.com/madebyhiro/codem-isoboxer"
},
"bugs": {
"url": "https://github.com/madebyhiro/codem-isoboxer/issues"
},
"author": {
"name": "Sjoerd Tieleman",
"email": "sjoerd@hiro.nl",
"url": "https://hiro.nl/"
},
"license": "MIT",
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-preprocess": "^5.1.0",
"jasmine-node": "^1.14.5",
"arraybuffer-equal": "^1.0.4",
"jshint": "^2.9.4"
},
"scripts": {
"test": "npm run grunt && jasmine-node test/spec",
"jshint": "jshint src/*.js src/**/*.js",
"grunt": "grunt",
"watch": "grunt watch"
}
}