-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
77 lines (77 loc) · 2.4 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
{
"name": "menu-icons",
"title": "Menu Icons",
"description": "Spice up your navigation menus with pretty icons, easily.",
"version": "0.13.16",
"homepage": "http://wordpress.org/plugins/menu-icons/",
"license": "GPL-2.0",
"author": {
"name": "ThemeIsle",
"email": "[email protected]",
"url": "http://themeisle.com/"
},
"pot": {
"reportmsgidbugsto": "https://github.com/Codeinwp/wp-menu-icons/issues",
"languageteam": "Themeisle Translate <[email protected]>",
"lasttranslator": "Themeisle Translate Team <[email protected]>"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"babel-loader": "^8.2.3",
"babel-plugin-component": "^1.1.1",
"conventional-changelog-simple-preset": "^1.0.15",
"extract-text-webpack-plugin": "^2.1.2",
"grunt": "^1.4.0",
"grunt-version": "^2.0.0",
"grunt-wp-readme-to-markdown": "^2.0.1",
"load-project-config": "~0.2.1",
"replace-in-file": "^6.2.0",
"semantic-release": "^17.4.2",
"semantic-release-slack-bot": "^2.1.0"
},
"keywords": [
"menu",
"nav-menu",
"icons",
"navigation",
"font-icons",
"font-awesome",
"elusive",
"dashicons",
"genericons"
],
"textdomain": "menu-icons",
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "git://github.com/codeinwp/wp-menu-icons.git"
},
"bugs": {
"url": "https://github.com/codeinwp/wp-menu-icons/issues"
},
"scripts": {
"build": "NODE_ENV=production webpack --env=production --config webpack.config.babel.js && grunt",
"start": "NODE_ENV=development webpack-dev-server --env=development --config webpack.config.babel.js",
"lint:js": "eslint Gruntfile.js js/src",
"lint:php": "composer run lint",
"dist": "bash bin/dist.sh",
"release": "semantic-release --debug",
"lint": "npm run lint:js && npm run lint:php"
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-qunit": "^5.1.1",
"grunt-contrib-uglify": "^5.0.1",
"webpack": "^2.7.0",
"webpack-merge": "^4.2.2"
}
}