forked from bigcommerce/bigpay-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@bigcommerce/bigpay-client",
"version": "5.19.0",
"description": "JavaScript client for BigPay",
"browserslist": [
"last 2 versions",
"not ie < 11",
"not Baidu > 0",
"not QQAndroid > 0",
"not Android < 62"
],
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"lint": "eslint src test",
"prerelease": "npm run lint && npm test",
"release": "standard-version -a",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "[email protected]:bigcommerce/bigpay-client-js.git"
},
"author": "BigCommerce",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-git": "^2.10.1",
"gulp-prompt": "^1.2.0",
"gulp-touch": "^1.0.1",
"jest": "^27.4.7",
"lodash": "^4.17.21",
"semver": "^7.3.5",
"standard-version": "^9.3.2",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@bigcommerce/form-poster": "^1.4.0",
"babel-jest": "^27.4.6",
"deep-assign": "^3.0.0",
"object-assign": "^4.1.1"
}
}