forked from SmashTapsOS/reactjs-videobg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.68 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
{
"name": "reactjs-videobg",
"version": "1.0.0",
"description": "Easily add background videos to react web apps.",
"main": "./dist/bundle.cjs.js",
"module": "./dist/bundle.esm.js",
"scripts": {
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"prettify": "prettier 'src/**/*.js' --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"commit": "git-cz",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"prebuild": "rimraf dist",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/samAbeywickrama/reactjs-videobg.git"
},
"keywords": [
"react",
"react-bg",
"react-background-video",
"react-video",
"react-background",
"video-background",
"react"
],
"author": "Sameera C Abeywickrama",
"license": "MIT",
"bugs": {
"url": "https://github.com/samAbeywickrama/reactjs-videobg/issues"
},
"homepage": "https://github.com/samAbeywickrama/reactjs-videobg#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-jest": "^24.8.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.5",
"cz-conventional-changelog": "3.0.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"git-cz": "^3.2.1",
"husky": "3.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"react": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.1",
"semantic-release": "^15.13.19"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run prettify && npm run lint && npm run test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"react": "^16.8.6"
},
"engines": {
"node": ">=8"
},
"jest": {
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/__mocks__/styles.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}