-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "@bigcommerce/stencil-utils",
"version": "6.18.0",
"main": "src/main.js",
"license": "BSD-4-Clause",
"author": "Bigcommerce",
"description": "Utility library used by BigCommerce Stencil Framework themes",
"repository": {
"type": "git",
"url": "git://github.com/bigcommerce/stencil-utils.git"
},
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "webpack --config webpack.conf.js",
"test": "jest",
"test-with-coverage": "jest --coverage --verbose",
"lint": "eslint .",
"lint--fix": "eslint . --fix",
"prepublish": "npm run build"
},
"dependencies": {
"eventemitter3": "^4.0.4",
"uuid": "^9.0.0",
"whatwg-fetch": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.11.0",
"@bigcommerce-labs/bodl-events": "1.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^9.1.2",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=18"
}
}