-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 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
{
"name": "undercurrent",
"version": "0.2.0",
"description": "Common tools to facilitate frontend development and testing.",
"main": "src/index.js",
"scripts": {
"eslint": "$(npm bin)/eslint src",
"eslint-fix": "$(npm bin)/eslint --fix src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xwp/undercurrent.git"
},
"bugs": {
"url": "https://github.com/xwp/undercurrent/issues"
},
"homepage": "https://github.com/xwp/undercurrent#readme",
"keywords": [
"frontend",
"tasks",
"gulp",
"stylelint",
"tools",
"webpack",
"wordpress",
"workflow"
],
"author": {
"name": "Justin Kopepasah",
"email": "[email protected]",
"url": "https://koop.sh"
},
"contributors": [
{
"name": "Mike Crantea",
"email": "[email protected]",
"url": "https://www.xwp.co"
},
{
"name": "Piotr Delawski",
"email": "[email protected]",
"url": "https://www.xwp.co"
}
],
"babel": {
"presets": [
[
"env"
]
]
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions",
"last 2 Opera versions",
"last 2 iOS versions",
"last 1 Android version",
"last 1 ChromeAndroid version",
"> 1%"
],
"dependencies": {
"autoprefixer": "^9.7.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"browserslist": "^4.8.7",
"cross-env": "^7.0.0",
"del": "^5.1.0",
"eslint": "^6.8.0",
"@wordpress/eslint-plugin": "^4.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-compat": "^3.5.1",
"gulp": "4.0.2",
"gulp-cached": "^1.1.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-postcss": "^8.0.0",
"gulp-progeny": "^0.4.1",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-util": "^3.0.8",
"postcss-assets": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^4.0.1",
"postcss-reporter": "^6.0.1",
"postcss-scss": "^2.0.0",
"redent": "^3.0.0",
"stylelint": "^13.2.0",
"stylelint-config-xwp": "github:xwp/stylelint-config-xwp",
"webpack": "^4.41.6",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"jest": "^25.1.0"
}
}