-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 984 Bytes
/
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
{
"name": "filter-video-player",
"version": "0.0.1",
"description": "A simple canvas video player with prebuilt filters",
"main": "dist/bundle.js",
"scripts": {
"dev": "NODE_ENV='development' webpack",
"prod": "NODE_ENV='production' webpack -p",
"build": "npm run dev && npm run prod"
},
"keywords": [],
"author": "Lorenzo Cinque <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"prettier-eslint": "^8.2.1",
"webpack": "^3.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Mulder90/filter-video-player.git"
},
"bugs": {
"url": "https://github.com/Mulder90/filter-video-player/issues"
}
}