-
Notifications
You must be signed in to change notification settings - Fork 431
/
package.json
51 lines (51 loc) · 1.13 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
51
{
"name": "gifshot",
"version": "0.0.1",
"description": "JavaScript library that can create animated gifs from video streams (e.g. webcam), existing videos (e.g. mp4), or existing images",
"main": "./src/gifshot",
"repository": {
"type": "git",
"url": "https://git.corp.yahoo.com/sports/gifshot.git"
},
"keywords": [
"gif",
"animated gif",
"WebRTC",
"getUserMedia"
],
"contributors": [{
"name": "Chase West"
}, {
"name": "Greg Franko"
}],
"scripts": {
"preview": "node demo/server/server.js",
"build": "gulp",
"watch": "gulp watch",
"test": "gulp test"
},
"precommit": [
"build"
],
"devDependencies": {
"amdclean": "latest",
"chai": "^1.9.1",
"express": "^4.2.0",
"gulp": "^3.8.8",
"gulp-insert": "^0.3.0",
"gulp-install": "^0.2.0",
"gulp-istanbul": "^0.3.1",
"gulp-mocha": "^1.1.0",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.1.0",
"gulp-uglify": "^0.3.0",
"jshint": "^2.5.6",
"lodash": "^2.4.1",
"precommit-hook": "^1.0.7",
"requirejs": "^2.1.11"
},
"engine": {
"node": ">= 0.8"
},
"license": "MIT"
}