This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
forked from fbaiodias/react-video-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.9 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
{
"name": "react-video-recorder",
"main": "lib",
"files": [
"lib",
"README.md"
],
"scripts": {
"test": "jest",
"clean": "rm -rf lib",
"build": "babel src -d lib --copy-files --ignore **/*.stories.js,**/*.spec.js",
"prebuild": "yarn run clean",
"prepublish": "NODE_ENV=production yarn run build",
"precommit": "lint-staged",
"start": "yarn run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"styled-components": "^4.1.1"
},
"dependencies": {
"babel-plugin-styled-components": "^1.5.1",
"react-svg-inline": "^2.1.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.15",
"@storybook/addon-links": "^3.3.15",
"@storybook/addons": "^3.3.15",
"@storybook/react": "^3.3.15",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier-standard": "^8.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"semantic-release": "^15.9.15",
"standard": "^11.0.0",
"styled-components": "^4.1.1",
"travis-deploy-once": "^4.4.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier-standard",
"standard --fix",
"git add"
]
},
"standard": {
"globals": [
"describe",
"it",
"expect",
"alert"
]
},
"jest": {
"setupFiles": [
"./test/setup.js"
],
"coverageReporters": [
"html"
]
},
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/fbaiodias/react-video-recorder.git"
}
}