-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "eko_wp_plugin",
"version": "1.0.5",
"main": "index.js",
"author": "eko",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"targets": {
"chrome": "63",
"edge": "40",
"firefox": "58",
"safari": "11",
"ios": "10.3.3",
"android": "5.0"
}
}
]
]
},
"scripts": {
"build:all": "composer install && npm install && npm run build",
"watch": "webpack --mode=development --watch --config webpack-config.js",
"build": "webpack --mode=production --config webpack-config.js",
"release": "node ./updateVersion.js"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-wordpress": "^2.0.0",
"prettier": "^1.12.1",
"prettier-eslint": "^8.8.1",
"prettier-stylelint": "^0.4.2",
"style-loader": "^1.2.1",
"stylelint": "^9.1.3",
"stylelint-config-wordpress": "^13.0.0",
"stylelint-order": "^0.8.1",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"eko-js-sdk": "0.0.2",
"minimist": "^1.2.5"
}
}