forked from wpeverest/everest-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.95 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.95 KB
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
{
"name": "everest-forms",
"title": "Everest Forms",
"version": "1.5.10",
"homepage": "https://github.com/wpeverest/everest-forms/",
"repository": {
"type": "git",
"url": "https://github.com/wpeverest/everest-forms.git"
},
"license": "GPL-3.0+",
"main": "Gruntfile.js",
"scripts": {
"build": "grunt && cross-env BABEL_ENV=default NODE_ENV=production webpack",
"watch": "cross-env BABEL_ENV=default webpack --watch",
"lint:js": "eslint assets/js --ext=js",
"git:update-hooks": "rm -r .git/hooks && node ./node_modules/husky/husky.js install"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@wordpress/babel-preset-default": "4.8.0",
"@wordpress/browserslist-config": "2.6.0",
"autoprefixer": "9.7.3",
"babel-loader": "8.0.6",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.7.0",
"cross-env": "6.0.3",
"eslint": "6.8.0",
"grunt": "1.0.4",
"grunt-checktextdomain": "1.0.1",
"grunt-contrib-compress": "1.6.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-cssmin": "3.0.0",
"grunt-contrib-jshint": "2.1.0",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-phpcs": "0.4.0",
"grunt-postcss": "0.9.0",
"grunt-rtlcss": "2.0.2",
"grunt-sass": "3.1.0",
"grunt-stylelint": "0.13.0",
"grunt-wp-i18n": "1.0.3",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"node-sass": "4.13.0",
"stylelint": "12.0.1",
"stylelint-config-wordpress": "16.0.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
"engines": {
"node": ">=8.9.3",
"npm": ">=5.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.php": [
"php -d display_errors=1 -l",
"composer run-script phpcs-pre-commit"
],
"*.scss": [
"stylelint --syntax=scss --fix",
"git add"
],
"!(*.min).js": [
"eslint --fix",
"git add"
]
}
}