-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 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
{
"name": "ffmpeg-wrap",
"version": "1.1.0",
"description": "",
"keywords": [
"ffmpeg"
],
"main": "index.js",
"scripts": {
"lint": "eslint src",
"build": "babel src --out-dir lib",
"watch": "babel src --watch --out-dir lib",
"test": "mocha --compilers js:babel/register",
"docs": "jsdoc README.md src -r -c ./jsdoc.json -d docs",
"docs-tmpl": "jsdoc README.md src -r -c ./jsdoc.json --template ./jsdoc-tmpl -d docs",
"push-docs": "git subtree split --prefix docs -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-page"
},
"repository": {
"type": "git",
"url": "https://github.com/stephenmudra/ffmpeg-wrap.git"
},
"author": "Stephen Mudra",
"license": "ISC",
"bugs": {
"url": "https://github.com/stephenmudra/ffmpeg-wrap/issues"
},
"homepage": "https://github.com/stephenmudra/ffmpeg-wrap",
"dependencies": {},
"devDependencies": {
"babel": "^5.5.7",
"babel-eslint": "^3.1.15",
"chai": "^3.0.0",
"eslint": "^0.22.1",
"jsdoc": "git+https://github.com/jsdoc3/jsdoc.git",
"mocha": "^2.2.5"
}
}