-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@kinokabaret/flicks",
"version": "1.0.2",
"description": "A simple node module to calculate flicks for video and audio pipelines with some helpful sanity checks.",
"main": "index.js",
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"comma-dangle": [
"error",
"never"
],
"no-cond-assign": [
"error",
"always"
],
"no-console": "off"
}
},
"scripts": {
"pretest": "eslint --ignore-path .gitignore index.js",
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"generate-docs": "node_modules/jsdoc -o docs --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nothingismagick/node-flicks.git"
},
"keywords": [
"flicks",
"video",
"audio",
"timestamp"
],
"author": "nothingismagick <daniel@kinokabaret.com> (https://kinokabaret.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nothingismagick/node-flicks/issues"
},
"homepage": "https://nothingismagick.github.io/node-flicks/",
"devDependencies": {
"babel-eslint": "^8.2.3",
"chai": "^4.1.2",
"codecov": "^3.0.1",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"foodoc": "0.0.8",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jsdoc-oblivion": "0.0.9",
"mocha": "^5.1.1",
"tui-jsdoc-template": "^1.2.2"
},
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"mathjs": "^4.1.2"
}
}