-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
142 lines (142 loc) · 3.97 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "ffmpeg-webworker",
"version": "1.3.0",
"description": "",
"main": "dist/index.js",
"files": [
"dist/"
],
"module": "dist/es/index.js",
"scripts": {
"clean": "rimraf ./dist",
"test": "cross-env NODE_ENV=test jest --coverage && npm run typescript",
"build": "npm run clean && npm run build:umd && npm run build:es",
"build:umd": "cross-env NODE_ENV=es rollup -c",
"build:es": "cross-env BABEL_ENV=es babel ./src --out-dir ./dist/es --ignore '**/*.spec.js'",
"start": "styleguidist server",
"styleguide": "styleguidist build",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"commitmsg": "commitlint -e",
"precommit": "pretty-quick --staged",
"prepublish": "npm run build && npm run size",
"logo": "cd logo && sketchtool export artboards logo.sketch",
"imagemin": "imagemin --out-dir=logo --plugin=pngquant --plugin=svgo",
"size": "size-limit",
"size:why": "size-limit --why",
"typescript": "tsc --project ./typings/tests"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "7 KB"
},
{
"path": "dist/es/index.js",
"limit": "7 KB"
}
],
"jest": {
"clearMocks": true,
"setupFilesAfterEnv": [
"<rootDir>/testSetup.js"
],
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/",
"<rootDir>/testSetup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"keywords": [
"ffmpeg",
"webworker",
"ffmpegjs",
"audio",
"video",
"transcode",
"convert"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">= 16.8"
},
"dependencies": {
"attr-accept": "^1.1.3",
"file-selector": "^0.1.11",
"prop-types": "^15.7.2",
"react-styleguidist": "^9.2.0",
"rollup-plugin-node-globals": "^1.4.0",
"webpack-blocks": "^2.0.1",
"webworker-file": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-angular": "^7.0.1",
"@commitlint/prompt": "^7.0.0",
"@commitlint/prompt-cli": "^7.0.0",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"commitizen": "^2.10.1",
"cross-env": "^5.2.0",
"husky": "^0.14.3",
"imagemin-cli": "^3.0.0",
"imagemin-pngquant": "^6.0.0",
"lint-staged": "^7.2.2",
"markdownlint-cli": "^0.13.0",
"prettier": "*",
"pretty-quick": "^1.11.1",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"rimraf": "^2.5.2",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2",
"sinon": "^3.2.1",
"size-limit": "^0.19.2",
"style-loader": "^0.18.2",
"styled-components": "^4.1.2",
"tslint": "^5.9.1",
"typescript": "^3.2.4",
"webpack": "^4.29.5"
},
"repository": {
"type": "git",
"url": "https://github.com/limistah/ffmpeg-webworker.git"
},
"typings": "typings/ffmpeg-webworker.d.ts",
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook"
}
},
"engines": {
"node": ">= 8"
}
}