-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "wp-shopify",
"version": "2.0.1",
"main": "lib/index.js",
"engines": {
"node": "11.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/** ./index.js -d lib",
"prepare": "npm run build",
"dev": "nodemon --watch ./src --watch index.js --exec npm run build"
},
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"prettier": {
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"lodash": "^4.17.11",
"nodemon": "^1.18.7",
"vue": "^2.5.13",
"vuex": "^3.0.1"
},
"description": "Vue mixin + store module for WP-Shopify. Integrates Vue, WordPress, and Shopify."
}