-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) Β· 1.72 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
{
"name": "@wearerequired/wp-team-list",
"version": "0.0.0",
"private": true,
"description": "Create a simple team site using your WordPress users. The plugin provides you with a shortcode, template tag and a widget.",
"homepage": "https://required.com/services/wordpress-plugins/wp-team-list/",
"repository": {
"type": "git",
"url": "https://github.com/wearerequired/wp-team-list"
},
"license": "GPL-2.0-or-later",
"author": {
"name": "required",
"email": "[email protected]",
"url": "https://required.com"
},
"scripts": {
"build": "wp-scripts build",
"start": "WP_DEVTOOL=eval wp-scripts start",
"lint:js": "wp-scripts lint-js ./assets/src",
"lint:js:fix": "wp-scripts lint-js ./assets/src --fix",
"lint:css": "wp-scripts lint-style \"./assets/src/**/*.css\"",
"lint:css:fix": "wp-scripts lint-style \"./assets/src/**/*.css\" --fix"
},
"devDependencies": {
"@wearerequired/browserslist-config": "0.3.0",
"@wearerequired/eslint-config": "5.0.0",
"@wearerequired/postcss-config": "1.1.0",
"@wearerequired/stylelint-config": "5.0.0",
"@wordpress/scripts": "26.0.0",
"prettier": "npm:[email protected]",
"rtlcss-webpack-plugin": "^4.0.7"
},
"dependencies": {
"accessible-autocomplete": "^2.0.4",
"react-select": "^5.7.2"
},
"stylelint": {
"extends": [
"@wearerequired/stylelint-config"
]
},
"eslintConfig": {
"extends": [
"@wearerequired/eslint-config"
],
"rules": {
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": [
"wp-team-list"
]
}
]
}
},
"browserslist": [
"extends @wearerequired/browserslist-config/modern"
]
}