forked from Awesome-Support/importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·105 lines (105 loc) · 2.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "awesome-support-importer",
"version": "1.0.0",
"author": "Pressware, LLC",
"homepage": "https://pressware.co",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/pressware/awesome-support-importer.git"
},
"bugs": {
"url": "https://github.com/pressware/awesome-support-importer/issues"
},
"licenses": [
{
"type": "GPLv3",
"url": "https://www.gnu.org/licenses/gpl-3.0.en.html"
}
],
"eslintConfig": {
"root": true,
"extends": "eslint:recommended",
"globals": {
"wp": true,
"ajaxurl": true
},
"env": {
"node": true,
"es6": true,
"amd": true,
"browser": true,
"jquery": true
},
"parserOptions": {
"ecmaFeatures": {
"globalReturn": true,
"generators": false,
"objectLiteralDuplicateProperties": false,
"experimentalObjectRestSpread": true
},
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"import"
],
"settings": {
"import/core-modules": [],
"import/ignore": [
"node_modules",
"\\.(coffee|scss|css|less|hbs|svg|json)$"
]
},
"rules": {
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
]
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"no-empty-source": null
}
},
"scripts": {
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint assets/scripts assets/build",
"lint:styles": "stylelint assets/styles/**/*.{css,sass,scss,sss,less}",
"test": "npm run -s lint"
},
"engines": {
"node": ">= 6.9.4"
},
"devDependencies": {
"babel-core": "~6",
"babel-preset-es2015": "~6",
"css-mqpacker": "~6",
"eslint-plugin-import": "~2.7",
"gulp": "~3",
"gulp-babel": "~6",
"gulp-concat": "~2",
"gulp-eslint": "~4",
"gulp-cssnano": "~2",
"gulp-notify": "~3",
"gulp-plumber": "~1",
"gulp-rename": "~1",
"gulp-postcss": "~7",
"gulp-sass": "~3",
"gulp-sass-lint": "~1",
"gulp-sourcemaps": "~2",
"gulp-uglify": "~3",
"gulp-util": "~3",
"eslint": "~4",
"stylelint": "~7.12",
"eslint-config-wordpress": "~2"
}
}