-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.93 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
{
"name": "@eventespresso/eea-paypal-smart-buttons",
"version": "1.0.0",
"description": "An add-on for Event Espresso 4 that adds support for PayPal Express Checkout with Smart Buttons",
"main": "webpack.dev.js",
"repository": "git+https://github.com/eventespresso/eea-paypal-smart-buttons.git",
"scripts": {
"watch": "webpack --watch --config webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js",
"watch-poll": "webpack --watch --watch-poll --config webpack.dev.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ci": "concurrently \"npm run lint && npm run build\" \"npm run test-unit:coverage-ci\"",
"test": "npm run lint && npm run test-unit",
"test-php": "cd tests && phpunit",
"test-php:coverage-ci": "npm run test-php -- --coverage-clover=coverage.xml && codecov",
"lint-php": "composer run-script lint",
"lint-php:skip-warnings": "composer run-script lint:skip-warnings",
"lint-php:fix": "composer run-script lint-fix",
"test-unit": "wp-scripts test-unit-js --config tests/javascript-config/unit/jest.config.json",
"test-unit:coverage": "npm run test-unit -- --coverage",
"test-unit:coverage-ci": "npm run test-unit -- --coverage --maxWorkers 1 && codecov",
"test-unit:watch": "npm run test-unit -- --watch"
},
"author": "Event Espresso",
"license": "GPL-2.0",
"browserslist": [
"extends @wordpress/browserslist-config"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "7.0.0",
"@wordpress/babel-plugin-import-jsx-pragma": "^1.1.2",
"@wordpress/babel-plugin-makepot": "^2.1.2",
"@wordpress/babel-preset-default": "^2.1.0",
"@wordpress/scripts": "^2.5.0",
"babel-eslint": "^8.2.6",
"babel-loader": "8.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"clean-webpack-plugin": "^0.1.18",
"codecov": "^3.1.0",
"concurrently": "^3.6.1",
"cross-env": "3.2.4",
"eslint-config-wordpress": "2.0.0",
"eslint-plugin-jest": "21.5.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-wordpress": "git://github.com/WordPress-Coding-Standards/eslint-plugin-wordpress.git#1774343f6226052a46b081e01db3fca8793cc9f1",
"license-checker": "^20.2.0",
"mini-css-extract-plugin": "^0.4.4",
"webpack": "^4.23.1",
"webpack-assets-manifest": "^3.1.0",
"webpack-cli": "^3.1.1",
"webpack-merge": "^4.1.4",
"recast": "^0.14.7",
"lodash": "^4.17.11"
},
"dependencies": {
"@wordpress/dom-ready": "^1.0.2",
"@wordpress/i18n": "^1.1.0",
"@wordpress/jest-preset-default": "^1.0.5",
"warning": "^4.0.2"
}
}