-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "wp-nav-menus",
"description": "Accessible, mobile-friendly navigation menus in WordPress themes.",
"version": "2.0.0",
"license": "MIT",
"repository": "cedaro/wp-nav-menus",
"homepage": "https://www.cedaro.com/",
"author": {
"name": "Brady Vercher",
"email": "brady@blazersix.com",
"url": "https://www.cedaro.com/"
},
"main": "index.js",
"keywords": [
"wordpress"
],
"scripts": {
"prebuild": "npm run lint",
"build": "webpack --mode=production",
"postbuild": "uglifyjs dist/wp-nav-menus.js --mangle --comments -o dist/wp-nav-menus.min.js",
"lint": "jshint index.js src/*.js test/*.js",
"dev": "webpack --mode=development --watch",
"test": "webpack --config webpack.test.config.js"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"jshint": "^2.9.4",
"raw-loader": "^0.5.1",
"tape": "^4.6.3",
"tape-istanbul": "^1.0.4",
"tape-run": "^4.0.0",
"uglify-js": "^3.4.7",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-tape-run": "0.0.7"
},
"files": [
"index.js",
"dist",
"src"
]
}