-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.16 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
{
"name": "digest",
"title": "Digest Notifications",
"description": "Get a daily/weekly/monthly digest of what's happening on your site instead of receiving a single email each time.",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/wearerequired/digest",
"license": "GPL-2.0-or-later",
"author": {
"name": "required",
"email": "support@required.ch",
"url": "https://required.com"
},
"repository": {
"type": "git",
"url": "https://github.com/wearerequired/digest"
},
"scripts": {
"build:css": "NODE_ENV=production postcss css/src/*.css -d css",
"build:js": "NODE_ENV=production webpack",
"build": "concurrently \"npm:build:*\"",
"watch:css": "NODE_ENV=development postcss --watch css/src/*.css -d css",
"watch:js": "webpack --watch",
"watch": "concurrently \"npm:watch:*\"",
"lint-js": "eslint .",
"lint-js:fix": "npm run lint-js -- --fix",
"lint-css": "stylelint .",
"lint-css:fix": "npm run lint-css -- --fix"
},
"stylelint": {
"extends": [
"@wearerequired/stylelint-config"
]
},
"eslintConfig": {
"extends": [
"@wearerequired/eslint-config"
],
"rules": {
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": [
"digest"
]
}
],
"@wordpress/no-global-event-listener": "off"
}
},
"browserslist": [
"extends @wearerequired/browserslist-config/modern"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"useBuiltIns": "usage",
"corejs": 3
}
]
]
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.3",
"@babel/preset-env": "7.20.2",
"@wearerequired/browserslist-config": "0.3.0",
"@wearerequired/eslint-config": "5.0.0",
"@wearerequired/postcss-config": "1.1.0",
"@wearerequired/stylelint-config": "5.0.0",
"babel-loader": "9.1.2",
"concurrently": "7.6.0",
"eslint": "8.36.0",
"postcss-cli": "10.1.0",
"prettier": "npm:wp-prettier@2.8.5",
"terser-webpack-plugin": "5.3.7",
"webpack-cli": "5.0.1"
}
}