-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "@bigcommerce/bigpay-client",
"version": "5.27.5",
"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.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"gulp": "^5.0.0",
"gulp-bump": "^3.2.0",
"gulp-conventional-changelog": "^4.0.0",
"gulp-git": "^2.10.1",
"gulp-prompt": "^1.2.0",
"gulp-touch": "^1.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"semver": "^7.5.4",
"standard-version": "^9.5.0",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@bigcommerce/form-poster": "^1.4.2",
"babel-jest": "^29.7.0",
"deep-assign": "^3.0.0",
"object-assign": "^4.1.1"
}
}