-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "@boldcommerce/bold-subscriptions-js",
"version": "1.2.9",
"description": "This Javascript API makes it easy to add subscriptions to the cart and navigate to the Bold Subscriptions or Cashier checkout.",
"main": "dist/es-bundle.js",
"unpkg": "dist/bold-subscriptions-js.min.js",
"files": [
"dist/es-bundle.js",
"dist/bold-subscriptions-js.min.js"
],
"engines": {
"node": ">=7.8.0"
},
"scripts": {
"build": "webpack",
"build-cdn": "webpack --config webpack.cdn.config.js",
"test": "jest --verbose",
"prepublish": "yarn test && yarn build && yarn build-cdn"
},
"keywords": [
"bold",
"subscriptions",
"storefront",
"js",
"javascript",
"api",
"Shopify"
],
"author": "Morgan Wowk <[email protected]>",
"license": "MIT",
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.5.4",
"@babel/runtime": "^7.14.6",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"jest": "^24.8.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"resolutions": {
"terser-webpack-plugin": "^1.4.2"
}
}