-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "ffprobe-client",
"description": "A zero-dependency, promise-based Node.js API for ffprobe",
"version": "0.0.0-development",
"main": "index.js",
"license": "MIT",
"author": "Philip Scott <[email protected]>",
"keywords": [
"ffmpeg",
"ffprobe",
"video",
"audio",
"stream",
"media",
"json"
],
"scripts": {
"fix": "eslint . --fix",
"lint": "eslint .",
"test": "eslint . && nyc mocha --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/ScottyFillups/ffprobe-client.git"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"dirty-chai": "^2.0.1",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"nyc": "^14.1.1",
"semantic-release": "^15.13.21",
"travis-deploy-once": "^5.0.2"
}
}