forked from ampproject/amp-wp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "amp-wp",
"title": "AMP for WordPress",
"homepage": "https://github.com/ampproject/amp-wp",
"repository": {
"type": "git",
"url": "https://github.com/ampproject/amp-wp.git"
},
"license": "GPL-2.0+",
"private": true,
"devDependencies": {
"@wordpress/dom-ready": "2.2.0",
"@wordpress/i18n": "3.3.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "7.1.5",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-wordpress": "2.0.0",
"eslint-plugin-react": "7.12.4",
"grunt": "1.0.4",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-shell": "3.0.1",
"grunt-wp-deploy": "2.0.0",
"npm-run-all": "4.1.5",
"timeago.js": "3.0.2",
"webpack": "4.29.6",
"webpack-cli": "3.3.0"
},
"main": "blocks/index.js",
"scripts": {
"build": "npm-run-all build:*",
"build:prepare": "grunt build",
"build:zip": "grunt create-build-zip",
"deploy": "grunt deploy",
"dev": "cross-env BABEL_ENV=default webpack --watch",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint .",
"lint:php": "vendor/bin/phpcs",
"test": "npm-run-all --parallel test:*",
"test:php": "phpunit"
}
}