-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "quick-navigation-interface",
"version": "1.0.1",
"description": "Allows you to quickly access links within wp-admin just by typing the first few letters.",
"author": "Ian Dunn",
"license": "GPL-2.0-or-later",
"keywords": [
"wp-admin",
"keyboard",
"navigation",
"shortcuts"
],
"homepage": "https://wordpress.org/plugins/quick-navigation-interface/",
"repository": {
"type": "git",
"url": "git://github.com/iandunn/quick-navigation-interface.git"
},
"bugs": {
"url": "https://github.com/iandunn/quick-navigation-interface/issues"
},
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"@wordpress/scripts": "^3.4.0",
"css-loader": "1.0.1",
"mini-css-extract-plugin": "0.4.4",
"node-sass": "^4.12.0",
"sass-loader": "^7.3.1",
"webpack-cli": "^3.3.8"
},
"scripts": {
"start": "wp-scripts start components/index.js",
"build": "wp-scripts build components/index.js",
"lint:css": "wp-scripts lint-style '**/*.css'",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json"
}
}