forked from Yoast/wordpress-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.48 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "wordpress-seo",
"license": "GPL-2.0+",
"description": "Development files for the Yoast SEO plugin",
"plugin": {
"glotpress": "http://translate.wordpress.org",
"textdomain": "wordpress-seo"
},
"pot": {
"reportmsgidbugsto": "https://github.com/yoast/wordpress-seo/issues",
"languageteam": "Yoast Translate <[email protected]>",
"lasttranslator": "Yoast Translate Team <[email protected]>"
},
"repository": {
"type": "git",
"url": "https://github.com/Yoast/wordpress-seo"
},
"scripts": {
"test": "jest",
"build": "webpack --config ./webpack/webpack.config.prod.js",
"start": "webpack-dev-server --config ./webpack/webpack.config.dev.js --progress"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/js/tests/setupTests.js",
"transformIgnorePatterns": [
"/node_modules/(?!yoast-components).+\\.js$"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/js/tests/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"devDependencies": {
"algoliasearch": "^3.16.0",
"autoprefixer": "^6.3.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^18.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"copy-webpack-plugin": "^4.0.1",
"envify": "^3.4.1",
"eslint-config-yoast": "^1.3.1",
"eslint-plugin-react": "^6.0.0",
"eslint-plugin-yoast": "^1.0.1",
"grunt": "^1.0.2",
"grunt-browserify": "^5.0.0",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-compress": "^1.4.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-glotpress": "^0.2.2",
"grunt-phpcs": "^0.4.0",
"grunt-phplint": "^0.1.0",
"grunt-po2json": "^0.3.0",
"grunt-postcss": "^0.8.0",
"grunt-replace": "^1.0.1",
"grunt-rtlcss": "^2.0.1",
"grunt-sass": "^2.0.0",
"grunt-shell": "^1.1.2",
"grunt-webpack": "^3.0.2",
"grunt-wp-css": "^0.2.1",
"grunt-wp-i18n": "^1.0.0",
"i18n-calypso": "^1.8.4",
"jest": "^18.0.0",
"load-grunt-config": "^0.19.2",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "16.2.0",
"redux-logger": "^3.0.6",
"sassdash": "^0.8.1",
"svg-react-loader": "^0.4.5",
"time-grunt": "^1.0.0",
"unminified-webpack-plugin": "^1.4.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.11.0"
},
"optionalDependencies": {
"grunt-contrib-imagemin": "^2.0.1"
},
"dependencies": {
"a11y-speak": "git+https://github.com/Yoast/a11y-speak.git#master",
"babel-polyfill": "^6.26.0",
"grunt-wp-deploy": "^1.2.1",
"jed": "^1.1.1",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"material-ui": "^0.20.0",
"prop-types": "^15.5.10",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"react-tap-event-plugin": "^3.0.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"select2": "^4.0.5",
"yoast-components": "^3.2.1",
"yoastseo": "^1.30.2"
},
"yoast": {
"pluginVersion": "7.1"
}
}