forked from Automattic/Edit-Flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.84 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
{
"name": "edit-flow",
"version": "2.0.0",
"description": "Edit Flow",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack --mode production --verbose",
"check-engines": "wp-scripts check-engines",
"dev": "webpack --watch",
"env": "wp-scripts env",
"lint": "eslint --quiet -f json blocks common modules | eslines --quiet",
"test": "echo \"Error: no test specified\" && exit 1",
"test-e2e": "wp-scripts test-e2e --config tests/e2e/jest.config.js",
"test-e2e:watch": "npm run test-e2e -- --watch",
"test-unit-php": "wp-scripts env test-php"
},
"wp-env": {
"plugin-dir": "Edit-Flow",
"plugin-name": "Edit Flow",
"docker-template": "./bin/docker-compose.override.yml.template",
"welcome-logo": [
" _______ ______ ___ _______ _______ ___ _______ _ _ ",
"| || | | | | | | || | | || | _ | |",
"| ___|| _ || | |_ _| | ___|| | | _ || || || |",
"| |___ | | | || | | | | |___ | | | | | || |",
"| ___|| |_| || | | | | ___|| |___ | |_| || |",
"| |___ | || | | | | | | || || _ |",
"|_______||______| |___| |___| |___| |_______||_______||__| |__|"
],
"welcome-build-command": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/Edit-Flow.git"
},
"author": "Automattic",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/Automattic/Edit-Flow/issues"
},
"homepage": "https://github.com/Automattic/Edit-Flow#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@wordpress/scripts": "^6.0.0",
"@wordpress/e2e-test-utils": "^3.0.0",
"@wordpress/jest-console": "^3.4.0",
"@wordpress/jest-puppeteer-axe": "^1.4.0",
"babel-eslint": "10.0.3",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"css-loader": "^2.0.0",
"eslines": "1.1.0",
"eslint": "5.16.0",
"eslint-config-wpvip": "github:automattic/eslint-config-wpvip#00fb352",
"eslint-plugin-flowtype": "4.5.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-json": "2.0.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-no-async-foreach": "0.1.1",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-wpcalypso": "4.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"lodash": "^4.17.15",
"node-sass": "^4.13.0",
"sass-loader": "^7.3.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {},
"eslintConfig": {
"extends": "wpvip"
}
}