-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
58
59
60
61
62
{
"name": "normalize-video",
"version": "0.0.0",
"description": "Convert videos into a standard format with minimal loss",
"repository": {
"type": "git",
"url": "[email protected]:gachou/normalize-video.git"
},
"homepage": "https://github.com/gachou/normalize-video",
"author": {
"name": "Nils Knappmeier",
"email": "[email protected]",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/gachou/normalize-video/issues"
},
"main": "src/normalize.js",
"license": "MIT",
"scripts": {
"lint": "eslint --fix .",
"test": "mocha && npm run lint",
"coverage": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly",
"postcoverage": "istanbul check-coverage coverage/coverage.json --statements 100",
"prethought": "thought --version || npm -g install thought",
"thought": "thought run -a",
"preversion": "thought --version || npm -g install thought",
"version": "thoughtful changelog -o -a && npm run thought"
},
"dependencies": {
"pify": "^3.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"copy-concurrently": "^1.0.5",
"dirty-chai": "^1.2.2",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"husky": "^0.13.2",
"istanbul": "^0.4.5",
"lodash.pick": "^4.4.0",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"rimraf": "^2.6.2",
"thoughtful-release": "^0.3.1",
"trace-and-clarify-if-possible": "^1.0.0"
},
"standard": {
"ignore": [
"test/fixtures/**"
]
},
"files": [
"src"
],
"keywords": []
}