-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 1.75 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
{
"name": "sugar-calendar",
"version": "2.2.4",
"description": "A calendar with a sweet disposition.",
"private": true,
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/sugarcalendar/core/"
},
"bugs": {
"url": "https://github.com/sugarcalendar/core/issues"
},
"homepage": "https://sugarcalendar.com",
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"babel": {
"presets": [
"@wordpress/babel-preset-default"
]
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
]
},
"dependencies": {
"chosen-js": "^1.8.7"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@wordpress/babel-preset-default": "^4.20.0",
"@wordpress/browserslist-config": "^2.7.0",
"@wordpress/eslint-plugin": "^2.4.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"grunt": "^1.4.1",
"grunt-checktextdomain": "^1.0.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.6.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-force-task": "^2.0.0",
"grunt-git": "^1.1.1",
"grunt-rtlcss": "^2.0.2",
"grunt-text-replace": "^0.4.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^1.0.0",
"load-grunt-tasks": "^3.5.2",
"makepot": "^0.3.0",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "2.1.2",
"webpack": "4.29.6",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=default webpack --watch",
"lint": "./node_modules/.bin/eslint .; exit 0",
"lint:fix": "./node_modules/.bin/eslint . --fix; exit 0",
"package-plugin": "npm run build && grunt build"
}
}