-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.79 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": "icon-picker",
"title": "Icon Picker",
"description": "Icon Picker for WordPress.",
"version": "0.4.1",
"homepage": "https://github.com/kucrut/wp-icon-picker",
"license": "GPL-2.0",
"author": {
"name": "Dzikri Aziz",
"email": "[email protected]",
"url": "http://kucrut.org/"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.14.1",
"eslint-config-humanmade": "^0.1.2",
"eslint-config-react-app": "^0.5.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.1",
"file-loader": "^0.10.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-cssmin": "^1.0.2",
"grunt-contrib-uglify": "^2.0.0",
"grunt-wp-i18n": "^0.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"webpack-merge": "^2.6.0"
},
"keywords": [
"icons",
"font-icons",
"dashicons",
"svg"
],
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "git://github.com/kucrut/wp-icon-picker.git"
},
"bugs": {
"url": "https://github.com/kucrut/wp-icon-picker/issues"
},
"scripts": {
"grunt:compress": "grunt compress",
"grunt:i18n": "grunt i18n",
"build": "NODE_ENV=production webpack --env=production --config webpack.config.babel.js && grunt",
"dev": "NODE_ENV=development webpack-dev-server --env=development --config webpack.config.babel.js",
"lint:php": "grunt phpcs",
"lint:js": "eslint Gruntfile.js js/src",
"lint": "npm run lint:php && npm run lint:js"
}
}