forked from Yoast/wordpress-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
145 lines (145 loc) · 5.22 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"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 <translations@yoast.com>",
"lasttranslator": "Yoast Translate Team <translations@yoast.com>"
},
"repository": {
"type": "git",
"url": "https://github.com/Yoast/wordpress-seo"
},
"scripts": {
"test": "jest",
"build": "NODE_ENV=production webpack --config ./webpack/webpack.config.js --progress",
"webpack-analyze-bundle": "NODE_ENV=production webpack --config ./webpack/webpack.config.js --profile --json > webpack-stats.json && webpack-bundle-analyzer webpack-stats.json js/dist",
"i18n-yoast-components": "NODE_ENV=production babel node_modules/yoast-components --ignore node_modules/yoast-components/node_modules,tests/*Test.js --plugins=@wordpress/babel-plugin-makepot > /dev/null",
"i18n-wordpress-seo": "NODE_ENV=production babel js/src --plugins=@wordpress/babel-plugin-makepot > /dev/null",
"start": "webpack-dev-server --config ./webpack/webpack.config.js --progress --env.environment=development"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/js/tests/setupTests.js",
"transformIgnorePatterns": [
"/node_modules/(?!yoast-components|yoastseo).+\\.js$"
],
"testPathIgnorePatterns": [
"/js/tests/edit.test.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",
"find-with-regex": "<rootDir>/node_modules/find-with-regex/lib/index.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testURL": "http://localhost/"
},
"devDependencies": {
"@wordpress/babel-plugin-makepot": "^1.0.0",
"@wordpress/babel-preset-default": "^1.1.3",
"@yoast/grunt-plugin-tasks": "^1.0.0",
"algoliasearch": "^3.16.0",
"autoprefixer": "^6.3.1",
"babel-cli": "^6.26.0",
"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-styled-components": "^1.5.1",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"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",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint-config-yoast": "^1.3.1",
"eslint-plugin-react": "^6.0.0",
"eslint-plugin-yoast": "^1.0.1",
"grunt": "^1.0.2",
"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-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-glotpress": "https://github.com/Yoast/grunt-glotpress.git#master",
"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-deploy": "^1.2.1",
"grunt-wp-i18n": "^1.0.0",
"i18n-calypso": "^1.8.4",
"jest": "^23.3.0",
"load-grunt-config": "^0.19.2",
"raf": "^3.4.0",
"react": "^16.3.0",
"react-dom": "16.3.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-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^2.11.0"
},
"optionalDependencies": {
"grunt-contrib-imagemin": "^2.0.1"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.55",
"@wordpress/components": "^1.0.1",
"@wordpress/data": "^1.0.1",
"@wordpress/element": "^1.0.1",
"@wordpress/i18n": "^1.2.2",
"@wordpress/is-shallow-equal": "^1.0.2",
"a11y-speak": "git+https://github.com/Yoast/a11y-speak.git#master",
"babel-polyfill": "^6.26.0",
"draft-js": "^0.10.5",
"draft-js-mention-plugin": "^3.0.4",
"find-with-regex": "~1.0.2",
"grunt-wp-deploy": "^1.2.1",
"interpolate-components": "^1.1.0",
"jed": "^1.1.1",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"material-ui": "^0.20.0",
"moment": "2.22.2",
"moment-duration-format": "^2.2.2",
"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",
"styled-components": "^3.2.6",
"yoast-components": "git+https://github.com/Yoast/yoast-components.git#develop",
"yoastseo": "^1.39.0"
},
"yoast": {
"pluginVersion": "8.1.1"
}
}