-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
66 lines (66 loc) · 2.23 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
{
"name": "brightcove-video-connect",
"private": true,
"title": "brightcove-video-connect",
"description": "A Brightcove plugin for WordPress.",
"version": "2.8.7",
"homepage": "https://wordpress.org/plugins/brightcove-video-connect/",
"author": {
"name": "Brightcove",
"email": "[email protected]"
},
"scripts": {
"watch": "grunt watch",
"build": "grunt",
"lint-js": "eslint assets/js/src/**",
"lint-js:fix": "eslint assets/js/src/** --fix",
"lint-php": "composer run lint",
"lint-php:fix": "composer run lint-fix",
"cypress:open": "cypress open --config-file tests/cypress/config.js --e2e --browser chrome",
"cypress:run": "cypress run --config-file tests/cypress/config.js --env brightcoveAccountId=$BRIGHTCOVE_ACCOUNT_ID,brightcoveClientId=$BRIGHTCOVE_CLIENT_ID,brightcoveClientSecret=$BRIGHTCOVE_CLIENT_SECRET",
"cypress:run-local": "cypress run --config-file tests/cypress/config.js",
"env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"postenv:start": "./tests/bin/initialize.sh"
},
"devDependencies": {
"@10up/cypress-wp-utils": "^0.4.0",
"@10up/eslint-config": "^2.3.5",
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@wordpress/env": "^10.5.0",
"cypress": "^13.13.3",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.6.0",
"grunt": "^1.5.3",
"grunt-autoprefixer": "*",
"grunt-contrib-clean": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-cssmin": "*",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-nodeunit": "*",
"grunt-contrib-sass": "*",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "*",
"grunt-sass": "*",
"grunt-sassdoc": "*",
"grunt-wp-i18n": "^1.0.3",
"load-grunt-tasks": "*",
"matchdep": "*",
"node-sass": "*",
"prettier": "^2.3.1"
},
"keywords": [],
"engines" : {
"node" : ">=16.0.0"
}
}