-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
52
53
54
55
56
57
{
"name": "face-hunter",
"version": "1.0.0",
"description": "tries to detect human faces in an uploaded video and splices them into a GIF",
"main": "./src/index.js",
"scripts": {
"start": "budo . -d --serve bundle.js --live",
"build": "browserify . -o bundle.js -g uglifyify",
"test": "browserify test.js | smokestack | tap-spec",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html,css} dist'",
"push": "gh-pages -d dist",
"deploy": "npm run build && npm run dist && npm run push"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/enspiral-cherubi/face-hunter"
},
"author": "data-doge",
"license": "MIT",
"bugs": {
"url": "https://github.com/enspiral-cherubi/face-hunter/issues"
},
"homepage": "https://github.com/enspiral-cherubi/face-hunter",
"dependencies": {
"bowser": "^1.2.0",
"downloadjs": "^1.4.2",
"gifencoder": "^1.0.6",
"jquery": "^2.2.3",
"jquery-facedetection": "^1.0.0",
"lodash.sample": "^4.1.1",
"parse-filepath": "^1.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^10.0.0",
"budo": "^4.0.0",
"gh-pages": "^0.3.0",
"smokestack": "^3.3.0",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
}
}